tEmpty changelog - plan9port - [fork] Plan 9 from user space
(HTM) git clone git://src.adamsgaard.dk/plan9port
(DIR) Log
(DIR) Files
(DIR) Refs
(DIR) README
(DIR) LICENSE
---
(DIR) commit c4954d68b8a46c9cbf2e26533e0f82d13522bbb4
(DIR) parent 55dedf713c04d00add59ba54464150b3a5a3aa60
(HTM) Author: rsc <devnull@localhost>
Date: Tue, 30 Sep 2003 19:06:33 +0000
Empty changelog
Diffstat:
A src/Makecommon | 17 +++++++++++++++++
1 file changed, 17 insertions(+), 0 deletions(-)
---
(DIR) diff --git a/src/Makecommon b/src/Makecommon
t@@ -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