mirror of
https://github.com/acpica/acpica/
synced 2024-12-26 04:16:58 +03:00
b87ffc0b38
Fix a few path problems with the new makefiles.
18 lines
412 B
Makefile
18 lines
412 B
Makefile
|
|
|
|
PROG= acpisrc
|
|
SRCS= ascase.c asconvrt.c asfile.c asmain.c asremove.c astable.c \
|
|
asutils.c osunixdir.c ../../common/getopt.c
|
|
|
|
CFLAGS+= -Wall -O2 -D_LINUX -DACPI_APPLICATION -Wstrict-prototypes -I../../include
|
|
|
|
|
|
aslmain : $(patsubst %.c,%.o, $(SRCS))
|
|
$(CC) $(LDFLAGS) $(CFLAGS) $(patsubst %.c,%.o, $(SRCS)) -o $(PROG)
|
|
|
|
CLEANFILES= $(PROG)
|
|
|
|
clean :
|
|
rm -f $(CLEANFILES) $(patsubst %.c,%.o, $(SRCS))
|
|
|