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