home *** CD-ROM | disk | FTP | other *** search
Makefile | 1995-11-23 | 407 b | 23 lines |
- #
- # This file is public domain
- #
- # $Id: smakefile 1.2 1995/10/30 19:15:00 petrin Exp petrin $
- #
-
- # Uncomment to include Multiuser-support
- MULTIUSER = DEFINE=USE_MULTIUSER
-
- #DEBUG = DEBUG=FULLFLUSH
- DEBUG =
-
- CFLAGS = MATH=STANDARD $(MULTIUSER) $(DEBUG)
-
- uptime: uptime.o
- sc link $(CFLAGS) uptime.o
-
- uptime.o: uptime.c defs.h
- sc $(CFLAGS) uptime.c
-
- clean:
- delete uptime uptime.lnk uptime.o
-