home *** CD-ROM | disk | FTP | other *** search
/ SGI Developer Toolbox 6.1 / SGI Developer Toolbox 6.1 - Disc 4.iso / src / exampleCode / irix / tools / Makefile < prev    next >
Encoding:
Makefile  |  1994-08-02  |  440 b   |  20 lines

  1. #!smake
  2.  
  3. include $(ROOT)/usr/include/make/commondefs
  4.  
  5. TARGETS = Lastrev chktime getopt gettime gpasswd isIn listWMres printf \
  6.     rcstime strlen unique vacupd
  7. CFILES  = chktime.c getopt.c gettime.c gpasswd.c isIn.c listWMres.c printf.c \
  8.     rcstime.c strlen.c unique.c
  9. C++FILES= Lastrev.c++
  10.  
  11. default all: $(TARGETS)
  12.  
  13. include $(COMMONRULES)
  14.  
  15. listWMres: $@.c
  16.     $(CCF) -o $@ $@.c $(LDFLAGS) -lX11
  17.  
  18. Lastrev: $@.c++
  19.      $(C++F) $(LDFLAGS) $@.c++ -o $@
  20.