File: Makefile

package info (click to toggle)
acpidump 20071116-1
  • links: PTS
  • area: main
  • in suites: lenny
  • size: 304 kB
  • ctags: 1,727
  • sloc: ansic: 3,531; makefile: 86
file content (16 lines) | stat: -rw-r--r-- 244 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
PROG= madt
SRCS=	madt.c

all: madt
$(PROG) : $(SRCS)
	$(CC) $(CFLAGS) $(SRCS) -o $(PROG)

test: madt
	./madt < example.APIC.dat
	./madt < example.APIC.bad.dat

CLEANFILES= $(PROG)

clean : 
	rm -f $(CLEANFILES) $(patsubst %.c,%.o, $(SRCS)) *~