home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-03-26 | 433 b | 21 lines |
- # to make the high score server
-
- # add/remove -DLOGGING_ENABLED to suit your taste.
- CFLAGS = -arch m68k -arch i386 -arch hppa -arch sparc -Wall -g -ObjC -DLOGGING_ENABLED
-
- all: serverd high
-
- serverd: ServerMain.o
- cc -o serverd ServerMain.o -lgamekit -ldaymisckit -lNeXT_s -lsys_s
- strip -A -n serverd
-
- high: Runner.c
- cc $(CFLAGS) -o high Runner.c
- strip high
-
- ServerMain.o: ServerMain.m
-
- clean:
- rm -rf serverd high ServerMain.o
-
-