home *** CD-ROM | disk | FTP | other *** search
Makefile | 1994-03-04 | 335 b | 14 lines |
- # Makefile for compiling simple MiscKit examples
- # Written and Copyright (C) 1994, by Don Yacktman, all rights reserved.
-
- NAME = StringTest
- TARGET__ARCHS = -arch m68k -arch i386
-
- all:
- cc -ObjC -O -L../../Source -I../../Headers -Wall $(TARGET__ARCHS) \
- -o $(NAME) $(NAME).m -lMiscKit -lNeXT_s
- strip $(NAME)
-
- clean:
- rm -rf $(NAME)
-