File: makefile

package info (click to toggle)
x10 1.06-8
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 112 kB
  • ctags: 66
  • sloc: ansic: 755; makefile: 53; perl: 42; sh: 36
file content (13 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# This is a simple makefile ( not to be confused with a useful one )

PROG=x10

$(PROG): x10-amh.c x10-amh.h
	g++ $(CFLAGS) -o $(PROG) x10-amh.c

install:
	install $(PROG) $(DESTDIR)/bin/x10

clean:
	rm -f $(PROG)