home *** CD-ROM | disk | FTP | other *** search
Makefile | 1989-03-04 | 564 b | 22 lines |
- # This makefile is specifically for XENIX386; you can delete most of the
- # options when using non-segmented architectures. Pay attention to
- # libraries needed, e.g. to use nap() in XENIX you must use the
- # -lx library.
- #
- # This program assumes the existence of getopt() in the standard
- # library!
-
- CFLAGS=-Ox
- LFLAGS=-s
- LIBS=-lx
-
- sealink: sealink.c
- cc $(CFLAGS) $(LFLAGS) -o sealink $(LIBS) sealink.c
- rm -f sealink.o
-
- tar: sealink.c
- -chmod o-rw sealink.c
- -chmod ug+rw sealink.c
- -chown bin sealink.c
- tar cvnf sealink.tar Readme _HISTORY sealink.mk sealink.c
-