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