File: Makefile

package info (click to toggle)
swftools 0.9.2%2Bgit20130725-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 8,680 kB
  • ctags: 17,348
  • sloc: ansic: 108,712; sh: 8,494; cpp: 8,040; yacc: 2,260; lisp: 904; makefile: 601; python: 300
file content (24 lines) | stat: -rw-r--r-- 489 bytes parent folder | download | duplicates (3)
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