6 ABS_PROGRAM_DEST = `cd $(PROGRAM_DEST); pwd`
8 all: $(PLATFORM)/parseThat
10 $(PLATFORM)/parseThat: $(PLATFORM)/Makefile
11 $(MAKE) -C $(PLATFORM)
13 $(PLATFORM)/Makefile: Makefile.in
14 @if [ -d $(PLATFORM) ]; then \
15 echo "directory $(PLATFORM) exists"; \
20 if [ -d $(ABS_PROGRAM_DEST) ]; then \
21 ../configure --with-dyninst-lib=$(LIBRARY_DEST) --with-dyninst-include=$(INCLUDE_DEST) --prefix=$(ABS_PROGRAM_DEST); \
23 ../configure --with-dyninst-lib=$(LIBRARY_DEST) --with-dyninst-include=$(INCLUDE_DEST); \
27 cd $(PLATFORM); $(MAKE) clean;
33 cd $(PLATFORM); $(MAKE) install;