home *** CD-ROM | disk | FTP | other *** search
/ Programmer 7500 / MAX_PROGRAMMERS.iso / CLIPPER / MISC / XBBS7200.ZIP / XBBS7200.TAR / sealink / Makefile.386 < prev    next >
Encoding:
Makefile  |  1989-03-04  |  564 b   |  22 lines

  1. # This makefile is specifically for XENIX386; you can delete most of the
  2. # options when using non-segmented architectures.  Pay attention to
  3. # libraries needed, e.g. to use nap() in XENIX you must use the
  4. # -lx library.
  5. #
  6. # This program assumes the existence of getopt() in the standard
  7. # library!
  8.  
  9. CFLAGS=-Ox 
  10. LFLAGS=-s
  11. LIBS=-lx
  12.  
  13. sealink: sealink.c
  14.     cc $(CFLAGS) $(LFLAGS) -o sealink $(LIBS) sealink.c
  15.     rm -f sealink.o
  16.  
  17. tar: sealink.c
  18.     -chmod o-rw sealink.c
  19.     -chmod ug+rw sealink.c
  20.     -chown bin sealink.c
  21.     tar cvnf sealink.tar Readme _HISTORY sealink.mk sealink.c
  22.