aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorrsc <devnull@localhost>2003-09-30 19:06:33 +0000
committerrsc <devnull@localhost>2003-09-30 19:06:33 +0000
commitc4954d68b8a46c9cbf2e26533e0f82d13522bbb4 (patch)
tree5fd5fff12c64cc303db1e06a856e27060933dd16
parent55dedf713c04d00add59ba54464150b3a5a3aa60 (diff)
downloadplan9port-c4954d68b8a46c9cbf2e26533e0f82d13522bbb4.tar.gz
plan9port-c4954d68b8a46c9cbf2e26533e0f82d13522bbb4.tar.bz2
plan9port-c4954d68b8a46c9cbf2e26533e0f82d13522bbb4.zip
Empty changelog
-rw-r--r--src/Makecommon17
1 files changed, 17 insertions, 0 deletions
diff --git a/src/Makecommon b/src/Makecommon
new file mode 100644
index 00000000..687ba69e
--- /dev/null
+++ b/src/Makecommon
@@ -0,0 +1,17 @@
+.c.$O:
+ @echo cc $*.c
+ @$(CC) $(CFLAGS) -I$(9SRC)/include $*.c
+
+%.$O: %.c
+ @echo cc $*.c
+ @$(CC) $(CFLAGS) -I$(9SRC)/include $*.c
+
+$(OFILES): $(HFILES)
+
+clean:
+ rm -f $(CLEANFILES)
+
+nuke:
+ rm -f $(CLEANFILES) $(NUKEFILES)
+
+.phony: all install clean nuke