Changes in trunk/sandbox/emit-it/Makefile [25:11]
- File:
-
- 1 edited
-
trunk/sandbox/emit-it/Makefile (modified) (1 diff)
Legend:
- Unmodified
- Added
- Removed
-
trunk/sandbox/emit-it/Makefile
r25 r11 1 2 ALL = emit-it complex-key-bug trailing-space-bug3 1 4 2 .PHONY: default clean 5 3 6 default: $(ALL)4 default: emit-it 7 5 8 6 clean: 9 rm -f *.o10 rm -f $(ALL)7 rm -f emit-it 8 rm -f emit-it.o 11 9 12 %.o: %.c 13 gcc -c $< -o $@ -Wall -Wstrict-prototypes -I${HOME}/include10 emit-it: emit-it.o 11 gcc emit-it.o -o emit-it -lsyck -L${HOME}/lib -Wall -Wstrict-prototypes 14 12 15 $(ALL): %: %.o 16 gcc $< -o $@ -lsyck -L${HOME}/lib -Wall -Wstrict-prototypes 13 emit-it.o: emit-it.c 14 gcc -c emit-it.c -o emit-it.o -I${HOME}/include 15
Note: See TracChangeset
for help on using the changeset viewer.
