Bring in acpica-20040527 from intel. See: http://developer.intel.com/technology...
[dragonfly.git] / sys / contrib / dev / acpica-unix-20040527 / tools / acpisrc / Makefile
1  
2
3 PROG=   acpisrc
4 SRCS=   ascase.c asconvrt.c asfile.c asmain.c asremove.c asutils.c osunixdir.c \
5         ../../common/getopt.c
6
7 CFLAGS+= -Wall -O2 -D_LINUX -Wstrict-prototypes -I../../include 
8
9
10 aslmain : $(patsubst %.c,%.o, $(SRCS))
11         $(CC) $(LDFLAGS) $(patsubst %.c,%.o, $(SRCS)) -o $(PROG)
12
13 CLEANFILES= $(PROG)
14
15 clean : 
16         rm -f $(CLEANFILES) $(patsubst %.c,%.o, $(SRCS))
17