home *** CD-ROM | disk | FTP | other *** search
/ Chip 2001 Mobile / Chip_Mobile_2001.iso / palm / tools / blastpad / blastpad.EXE / Makefile < prev    next >
Makefile  |  2000-11-19  |  943b  |  43 lines

  1. # Makefile for blastpad
  2.  
  3. VER=2.5
  4. DOC=ChangeLog.txt readme.txt
  5. SRC=Makefile blastpad.rcp blastpadlg.bmp blastpadsm.bmp
  6. C=blastpad.c
  7. H=blastpad.h
  8. P=blastpad.prc
  9.  
  10. I=/usr/local/palmdev/sdk-3.1/include/Core
  11. INCLUDES=-I $I -I $I/System -I $I/Hardware -I $I/UI -I $I/International
  12. LIBS=
  13. CFLAGS=$(INCLUDES) $(LIBS) -O2
  14. CC=m68k-palmos-gcc
  15. O=$(C:.c=.o)
  16.  
  17. TARGET=blastpad.prc
  18.  
  19. all: $(TARGET)
  20. zip: blastpad.zip
  21. tgz: blastpad.tar.gz
  22.  
  23. clean:
  24.     rm -f *.grc *.bin *.o blastpad blastpad.prc 2>/dev/null
  25.  
  26. blastpad: $O Makefile
  27.     $(CC) -o blastpad $O
  28.  
  29. blastpad.prc: blastpad blastpad.rcp Makefile
  30.     obj-res blastpad
  31.     pilrc blastpad.rcp
  32.     build-prc blastpad.prc "Blast Pad" BPad *.grc *.bin
  33.     rm *.grc *.bin
  34.  
  35. blastpad.tar.gz: $(DOC) $(SRC) $C $H $P
  36.     mkdir blastpad-$(VER)
  37.     cp $(DOC) $(SRC) $C $H $P blastpad-$(VER)
  38.     tar cvfz blastpad-$(VER).tar.gz blastpad-$(VER)/*
  39.     rm -rf blastpad-$(VER)
  40.  
  41. blastpad.zip: $(DOC) $(SRC) $C $H $P
  42.     zip blastpad.zip $(DOC) $(SRC) $C $H $P
  43.