fixed uninstall
[swftools.git] / m4 / Makefile
1 # simple pmake detecting Makefile
2
3 all: clear  test.o
4 clean: all
5 install:
6 uninstall:
7
8 CC=@echo "*******************************************************";\
9     echo "Your make is broken- try to get yourself a working one.";\
10     echo "gmake 3.79.1 or newer should be fine.                  ";\
11     echo "*******************************************************";\
12     exit 1;exec >/dev/null;echo
13
14 clear:
15         @rm -f test.c
16
17 %.o: %.c
18
19 test.c:
20         @touch test.c
21
22 test.o: test.c
23
24 .SUFFIXES: .o .cpp