include ./Makefile.common
all install uninstall clean:
+ @echo making $@ in m4...
+ cd m4;$(MAKE) $@
@echo making $@ in lib...
cd lib;$(MAKE) $@
@echo making $@ in src...
--- /dev/null
+# simple pmake detecting Makefile
+
+all: clear test.o
+clean: all
+install: all
+
+CC=@echo "*******************************************************";\
+ echo "Your make is broken- try to get yourself a working one.";\
+ echo "gmake 3.79.1 or newer should be fine. ";\
+ echo "*******************************************************";\
+ exit 1;exec >/dev/null;echo
+
+clear:
+ @rm -f test.c
+
+%.o: %.c
+
+test.c:
+ @touch test.c
+
+test.o: test.c
+
+.SUFFIXES: .o .cpp