summaryrefslogtreecommitdiff
path: root/m4/Makefile
blob: b664aea8168ce0246c3dc69f3bd26ec585ef7d93 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
# simple pmake detecting Makefile

all: clear  test.o
clean: clear
install:
uninstall:

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