home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Examples / MiscString / Makefile next >
Encoding:
Makefile  |  1994-03-04  |  335 b   |  14 lines

  1. # Makefile for compiling simple MiscKit examples
  2. # Written and Copyright (C) 1994, by Don Yacktman, all rights reserved.
  3.  
  4. NAME = StringTest
  5. TARGET__ARCHS = -arch m68k -arch i386
  6.  
  7. all:
  8.     cc -ObjC -O -L../../Source -I../../Headers -Wall $(TARGET__ARCHS) \
  9.             -o $(NAME) $(NAME).m -lMiscKit -lNeXT_s
  10.     strip $(NAME)
  11.  
  12. clean:
  13.     rm -rf $(NAME)
  14.