Indentation fix, cleanup.
[AROS.git] / arch / all-pc / acpica / generate / unix / acpibin / Makefile
blob2a5aff6e2851b9b4724cf3f1963db833f9e6eefe
2 # acpibin - Binary ACPI table utility
6 # Note: This makefile is intended to be used from within the native
7 # ACPICA directory structure, from under generate/unix. It specifically
8 # places all object files in a generate/unix subdirectory, not within
9 # the various ACPICA source directories. This prevents collisions
10 # between different compilations of the same source file with different
11 # compile options, and prevents pollution of the source code.
13 include ../Makefile.config
14 FINAL_PROG = ../$(BINDIR)/acpibin
15 PROG = $(OBJDIR)/acpibin
18 # Search paths for source files
20 vpath %.c \
21 $(ACPIBIN)\
22 $(ACPICA_UTILITIES)\
23 $(ACPICA_COMMON)\
24 $(ACPICA_OSL)
26 HEADERS = \
27 $(wildcard $(ACPIBIN)/*.h)
29 OBJECTS = \
30 $(OBJDIR)/abcompare.o\
31 $(OBJDIR)/abmain.o\
32 $(OBJDIR)/utalloc.o\
33 $(OBJDIR)/utbuffer.o\
34 $(OBJDIR)/utcache.o\
35 $(OBJDIR)/utdecode.o\
36 $(OBJDIR)/utexcep.o\
37 $(OBJDIR)/utglobal.o\
38 $(OBJDIR)/utlock.o\
39 $(OBJDIR)/utmath.o\
40 $(OBJDIR)/utmisc.o\
41 $(OBJDIR)/utmutex.o\
42 $(OBJDIR)/utstate.o\
43 $(OBJDIR)/utstring.o\
44 $(OBJDIR)/utxferror.o\
45 $(OBJDIR)/osunixxf.o\
46 $(OBJDIR)/getopt.o
49 # Flags specific to acpibin
51 CFLAGS += \
52 -DACPI_BIN_APP\
53 -I$(ACPIBIN)
56 # Common Rules
58 include ../Makefile.rules