home *** CD-ROM | disk | FTP | other *** search
/ Nebula 1994 June / NEBULA_SE.ISO / SourceCode / MiscKit / Examples / MiscStringRegex / Makefile next >
Encoding:
Makefile  |  1994-03-15  |  413 b   |  18 lines

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