Changes between Version 3 and Version 4 of Projects/Expat


Ignore:
Timestamp:
06/21/12 21:04:23 (12 years ago)
Author:
C Rempel
Comment:

/* rtems-addon-packages/examples/expat/Makefile */

Legend:

Unmodified
Added
Removed
Modified
  • Projects/Expat

    v3 v4  
    3838 #      Template leaf node Makefile
    3939 #
     40The source directory is a relative path to the expat library
    4041 SRCDIR=../../expat/tests
     42 
     43 # C source names, if any, go here -- minus the .c
     44Because BuildTests.sh was not used, each source was listed separately.
    4145
    42  # C source names, if any, go here -- minus the .c
    4346 C_PIECES= init $(SRCDIR)/minicheck $(SRCDIR)/chardata $(SRCDIR)/runtests
    4447 C_FILES=$(C_PIECES:%=%.c)
     
    5053 CC_FILES=$(CC_PIECES:%=%.cc)
    5154 CC_O_FILES=$(CC_PIECES:%=${ARCH}/%.o)
    52  
     55
     56The header files for the test suite.
    5357 H_FILES= $(SRCDIR)/minicheck.h $(SRCDIR)/chardata.h
    5458 
     
    6165 SRCS=$(C_FILES) $(CC_FILES) $(H_FILES) $(S_FILES)
    6266 OBJS=$(C_O_FILES) $(CC_O_FILES) $(S_O_FILES)
    63  
     67
     68The program to turn into an executable.
    6469 PGMS=${ARCH}/expat.exe
    6570 
     
    8691 LD_PATHS  += $(RTEMS_MAKEFILE_PATH)/lib
    8792 LD_LIBS   += -lexpat
     93
     94I opted not to increase the size for this execuatable, because Expat is a parser, not a server.
    8895 CFLAGS_LD   += -Wl,--defsym -Wl,HeapSize=0x200000 # network needs more space
    8996 CFLAGS_DEBUG_V   +=