home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / prog / c / cpp.lha / Makeit.mk < prev    next >
Internet Message Format  |  1991-08-05  |  879b

  1. From lenler!ithil!dc.dth.dk!bojsen Mon, 5 Aug 91 20:03:14 MED
  2. Received: by moria.UUCP (V1.09/Amiga)
  3.     id AA00000; Mon, 5 Aug 91 20:03:14 MED
  4. Received: by lenler.uucp (V1.09/Amiga)
  5.     id AA47616; Mon, 5 Aug 91 19:58:07 MET
  6. Received: by ithil.dc.dth.dk (4.1/DC1.2SU)
  7.     id AA29350; Mon, 5 Aug 91 13:09:37 MED
  8. Date: Mon, 5 Aug 91 13:09:37 MED
  9. Message-Id: <9108051109.AA29350@ithil.dc.dth.dk>
  10. From: bojsen@dc.dth.dk (Per Bojsen)
  11. To: bojsen@lenler
  12. Subject: New cpp: Makeit.mk
  13.  
  14. .PHONY: install clean
  15.  
  16. install: $(OSE)/lib/$(OSE_ARCH)_$(OSE_VERSION)/cpp
  17.  
  18. $(OSE)/lib/$(OSE_ARCH)_$(OSE_VERSION)/cpp : cpp
  19.     cp $? $@
  20.     chmod 0775 $@
  21.  
  22. cpp:
  23. ifeq ($(OSE_ARCH),pyr)
  24.     /.attbin/make -f Makefile cpp
  25. elif ($(OSE_ARCH),pc386ix)
  26.     make -f Makefile MACHINE=M_INTERACTIVE cpp
  27. else
  28.     make -f Makefile cpp
  29. endif
  30.  
  31. clean:
  32. ifeq ($(OSE_ARCH),pyr)
  33.     /.attbin/make -f Makefile clean
  34. else
  35.     make -f Makefile clean
  36. endif
  37.  
  38.