1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60
|
## Process this file with automake to produce Makefile.in
AM_CPPFLAGS =\
-I$(top_srcdir)/include \
-DHEADER_PATH=\"@GPUTILS_HEADER_PATH@\" \
-DLKR_PATH=\"@GPUTILS_LKR_PATH@\" \
-DLIB_PATH=\"@GPUTILS_LIB_PATH@\"
noinst_LIBRARIES = libgputils.a
libgputils_a_SOURCES =\
gparchive.c \
gparchive.h \
gpbitarray.c \
gpbitarray.h \
gpcfg.c \
gpcfg.h \
gpcfg-table.c \
gpcod.c \
gpcod.h \
gpcoff.h \
gpcoffgen.c \
gpcoffgen.h \
gpcofflink.c \
gpcofflink.h \
gpcoffopt.c \
gpcoffopt.h \
gpdis.c \
gpdis.h \
gphash.c \
gphash.h \
gplist.c \
gplist.h \
gpmemory.c \
gpmemory.h \
gpmessage.c \
gpmessage.h \
gpopcode.c \
gpopcode.h \
gpprocessor.c \
gpprocessor.h \
gpreadhex.c \
gpreadhex.h \
gpreadobj.c \
gpreadobj.h \
gpreg-table.c \
gpregister.c \
gpregister.h \
gpsym.c \
gpsym.h \
gpsymbol.c \
gpsymbol.h \
gpsystem.c \
gpsystem.h \
gptypes.h \
gpwritehex.c \
gpwritehex.h \
gpwriteobj.c \
gpwriteobj.h \
libgputils.h
|