home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1 (1993) / nebula.bin / SourceCode / AlexNeXTSTEPSource / Source / Chapter4_AppKit / Makefile < prev   
Encoding:
Makefile  |  1992-12-30  |  267 b   |  16 lines

  1. # Makefile for AppKitDemo application
  2.  
  3. AppKitDemo: AppKitDemo.m
  4.     cc -g -o AppKitDemo AppKitDemo.m -lNeXT_s
  5.  
  6. install: AppKitDemo
  7.     strip AppKitDemo
  8.     cp AppKitDemo ${HOME}/Apps
  9.     rm AppKitDemo
  10.  
  11. deinstall:
  12.     rm -rf ${HOME}/Apps/AppKitDemo
  13.  
  14. clean:
  15.     rm -rf *.o AppKitDemo *~
  16.