6639eb58eb
Drawterm is a program that users of non-Plan 9 systems can use to establish graphical cpu connections with Plan 9 cpu servers. Just as a real Plan 9 terminal does, drawterm serves its local name space as well as some devices (the keyboard, mouse, and screen) to a remote cpu server, which mounts this name space on /mnt/term and starts a shell. Typically, either explicitly or via the profile, one uses the shell to start rio. from Stanley Lieber (MAINTAINER) ok sthen@
21 lines
454 B
Plaintext
21 lines
454 B
Plaintext
$OpenBSD: patch-posix-mips_Makefile,v 1.1.1.1 2011/08/18 08:04:03 jasper Exp $
|
|
--- posix-mips/Makefile.orig Fri Dec 30 00:50:49 2005
|
|
+++ posix-mips/Makefile Mon Mar 30 18:22:24 2009
|
|
@@ -13,13 +13,6 @@ $(LIB): $(OFILES)
|
|
$(AR) r $(LIB) $(OFILES)
|
|
$(RANLIB) $(LIB)
|
|
|
|
-%.$O: %.c
|
|
- $(CC) $(CFLAGS) $*.c
|
|
-
|
|
-%.$O: %.s
|
|
- $(AS) $(ASFLAGS) -o $*.$O $*.s
|
|
-
|
|
-%.s: %.spp
|
|
- cpp $*.spp >$*.s
|
|
-
|
|
-
|
|
+tas.$O: tas.s
|
|
+ ln -sf tas.s tas.S
|
|
+ $(CC) -c -o tas.$O -mips3 tas.S
|