home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / unix / volume21 / exebyte_toc / Makefile < prev    next >
Makefile  |  1990-04-29  |  765b  |  39 lines

  1. SRCS = exetoc.c smtops.c
  2. OBJS = exetoc.o smtops.o
  3. HDRS = exitcodes.h smtio.h smtops.h
  4. DOCS = exetoc.man
  5.  
  6. # Uncomment this if you have librmt.a installed someplace
  7. RMT  = -DREMOTE=1 -I/usr/local/include
  8. LIBS = /usr/local/lib/librmt.a
  9.  
  10. # Uncomment this if you DON'T have librmt.a installed someplace
  11. #RMT  =
  12. #LIBS =
  13.  
  14. CFLAGS = $(RMT) -O
  15.  
  16. BINDIR = /usr/local/bin
  17. MANDIR = /usr/local/man/man1
  18. MANEXT = 1
  19.  
  20. exetoc: $(OBJS)
  21.     cc $(CFLAGS) -o exetoc $(OBJS) $(LIBS)
  22.  
  23. install: exetoc
  24.     install -s exetoc $(BINDIR)
  25.     cp exetoc.man $(MANDIR)/exetoc.$(MANEXT)
  26.  
  27. clean:
  28.     /bin/rm -f exetoc a.out $(OBJS) core *.BAK *.CKP
  29.  
  30. shar:
  31.     shar Makefile $(SRCS) $(HDRS) $(DOCS) >exetoc.shar
  32.  
  33. saber:
  34.     # load $(SRCS)
  35.  
  36.  
  37. exetoc.o: exitcodes.h smtio.h smtops.h
  38. smtops.o: exitcodes.h smtio.h smtops.h
  39.