Home | History | Annotate | Line # | Download | only in acpibin
      1      1.1    jruoho #
      2      1.1    jruoho # acpibin - Binary ACPI table utility
      3      1.1    jruoho #
      4      1.1    jruoho 
      5      1.1    jruoho #
      6      1.1    jruoho # Note: This makefile is intended to be used from within the native
      7      1.1    jruoho # ACPICA directory structure, from under generate/unix. It specifically
      8      1.1    jruoho # places all object files in a generate/unix subdirectory, not within
      9      1.1    jruoho # the various ACPICA source directories. This prevents collisions
     10      1.1    jruoho # between different compilations of the same source file with different
     11      1.1    jruoho # compile options, and prevents pollution of the source code.
     12      1.1    jruoho #
     13      1.1    jruoho include ../Makefile.config
     14  1.1.1.2  christos FINAL_PROG = ../$(BINDIR)/acpibin
     15  1.1.1.2  christos PROG = $(OBJDIR)/acpibin
     16      1.1    jruoho 
     17      1.1    jruoho #
     18  1.1.1.2  christos # Search paths for source files
     19      1.1    jruoho #
     20  1.1.1.2  christos vpath %.c \
     21  1.1.1.2  christos     $(ACPIBIN)\
     22  1.1.1.2  christos     $(ACPICA_UTILITIES)\
     23  1.1.1.2  christos     $(ACPICA_COMMON)\
     24  1.1.1.2  christos     $(ACPICA_OSL)
     25  1.1.1.2  christos 
     26  1.1.1.2  christos HEADERS = \
     27  1.1.1.2  christos     $(wildcard $(ACPIBIN)/*.h)
     28  1.1.1.2  christos 
     29  1.1.1.2  christos OBJECTS = \
     30  1.1.1.2  christos 	$(OBJDIR)/abcompare.o\
     31  1.1.1.2  christos 	$(OBJDIR)/abmain.o\
     32  1.1.1.3  christos 	$(OBJDIR)/cmfsize.o\
     33  1.1.1.3  christos 	$(OBJDIR)/getopt.o\
     34  1.1.1.2  christos 	$(OBJDIR)/utalloc.o\
     35  1.1.1.4  christos 	$(OBJDIR)/utascii.o\
     36  1.1.1.2  christos 	$(OBJDIR)/utbuffer.o\
     37  1.1.1.2  christos 	$(OBJDIR)/utcache.o\
     38  1.1.1.3  christos 	$(OBJDIR)/utdebug.o\
     39  1.1.1.2  christos 	$(OBJDIR)/utdecode.o\
     40  1.1.1.2  christos 	$(OBJDIR)/utexcep.o\
     41  1.1.1.2  christos 	$(OBJDIR)/utglobal.o\
     42  1.1.1.2  christos 	$(OBJDIR)/utlock.o\
     43  1.1.1.2  christos 	$(OBJDIR)/utmath.o\
     44  1.1.1.2  christos 	$(OBJDIR)/utmisc.o\
     45  1.1.1.2  christos 	$(OBJDIR)/utmutex.o\
     46  1.1.1.2  christos 	$(OBJDIR)/utstate.o\
     47  1.1.1.2  christos 	$(OBJDIR)/utstring.o\
     48  1.1.1.2  christos 	$(OBJDIR)/utxferror.o\
     49  1.1.1.3  christos 	$(OBJDIR)/osunixxf.o
     50      1.1    jruoho 
     51      1.1    jruoho #
     52  1.1.1.2  christos # Flags specific to acpibin
     53      1.1    jruoho #
     54  1.1.1.2  christos CFLAGS += \
     55  1.1.1.2  christos     -DACPI_BIN_APP\
     56  1.1.1.2  christos     -I$(ACPIBIN)
     57      1.1    jruoho 
     58      1.1    jruoho #
     59  1.1.1.2  christos # Common Rules
     60      1.1    jruoho #
     61  1.1.1.2  christos include ../Makefile.rules
     62