mirror of
https://github.com/acpica/acpica/
synced 2024-12-26 04:16:58 +03:00
73dbf922ac
Utglobal.c contained a lot of code not related to global variables. These utility decode functions are moved to utdecode.c
27 lines
628 B
Makefile
27 lines
628 B
Makefile
|
|
PROG= acpibin
|
|
SRCS= abcompare.c abmain.c \
|
|
../../utilities/utalloc.c \
|
|
../../utilities/utcache.c \
|
|
../../utilities/utdebug.c \
|
|
../../utilities/utdecode.c \
|
|
../../utilities/utglobal.c \
|
|
../../utilities/utmath.c \
|
|
../../utilities/utmisc.c \
|
|
../../utilities/utmutex.c \
|
|
../../utilities/utstate.c \
|
|
../../osunixxf.c \
|
|
../../common/getopt.c
|
|
|
|
CFLAGS+= -Wall -O2 -D_LINUX -DACPI_APPLICATION -Wstrict-prototypes -I../../include
|
|
|
|
|
|
acpibin : $(patsubst %.c,%.o, $(SRCS))
|
|
$(CC) $(LDFLAGS) $(CFLAGS) $(patsubst %.c,%.o, $(SRCS)) -o $(PROG)
|
|
|
|
CLEANFILES= $(PROG)
|
|
|
|
clean :
|
|
rm -f $(CLEANFILES) $(patsubst %.c,%.o, $(SRCS))
|
|
|