home *** CD-ROM | disk | FTP | other *** search
/ Amiga Elysian Archive / AmigaElysianArchive.iso / prog / c / cpp.lha / Makeit.mk / text0000.txt < prev   
Encoding:
Text File  |  1991-08-05  |  412 b   |  25 lines

  1. .PHONY: install clean
  2.  
  3. install: $(OSE)/lib/$(OSE_ARCH)_$(OSE_VERSION)/cpp
  4.  
  5. $(OSE)/lib/$(OSE_ARCH)_$(OSE_VERSION)/cpp : cpp
  6.     cp $? $@
  7.     chmod 0775 $@
  8.  
  9. cpp:
  10. ifeq ($(OSE_ARCH),pyr)
  11.     /.attbin/make -f Makefile cpp
  12. elif ($(OSE_ARCH),pc386ix)
  13.     make -f Makefile MACHINE=M_INTERACTIVE cpp
  14. else
  15.     make -f Makefile cpp
  16. endif
  17.  
  18. clean:
  19. ifeq ($(OSE_ARCH),pyr)
  20.     /.attbin/make -f Makefile clean
  21. else
  22.     make -f Makefile clean
  23. endif
  24.  
  25.