home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume4 / xtacho / part01 / Makefile next >
Makefile  |  1989-07-19  |  2KB  |  59 lines

  1. # SCCS ID @(#)Makefile    1.7   7/14/89
  2. #
  3. #   Makefile - Makefile for xtacho
  4. #   Author: Kazuhiko Shutoh, 1989.
  5. #
  6. #   Permission to use, copy, modify and distribute without charge this
  7. #   software, documentation, images, etc. is granted, provided that this 
  8. #   comment and the author's name is retained.  The author assumes no 
  9. #   responsibility for lost sleep as a consequence of use of this software.
  10. #
  11. #   Send any comments, bug reports, etc. to: shutoh@isl.yamaha.JUNET or, 
  12. #   for oversea: shutoh%isl.yamaha.JUNET%kddlab@uunet.uu.net  
  13. #                 
  14. #
  15. CC         = /bin/cc
  16. CFLAGS         = -f68881 -O
  17. DESTDIR        = /usr/bin/X11
  18. MANDIR        = /usr/man/mann
  19. #
  20. #    Libraries for X11R2
  21. #
  22. #LIBS         = -lXaw -lXt -lX11 -lm -lrpcsvc
  23. #
  24. #    Libraries for X11R3
  25. #
  26. LIBS         = -lXaw -lXmu -lXt -lX11 -lm -lrpcsvc
  27.  
  28. ##############################################################################
  29. PROGRAMS    = ./xtacho
  30. SRCS         = ./xtacho.c
  31. OBJS        = ./xtacho.o
  32. LOCALHDRS    = ./xtacho.h ./xtacho.icon
  33. EXTERNHDRS    = /usr/include/stdio.h \
  34.           /usr/include/math.h \
  35.           /usr/include/rpcsvc/rstat.h \
  36.           /usr/include/X11/Intrinsic.h \
  37.           /usr/include/X11/StringDefs.h \
  38.           /usr/include/X11/Shell.h \
  39.           /usr/include/X11/Box.h \
  40.           /usr/include/X11/Label.h \
  41.           /usr/include/X11/Command.h \
  42.           /usr/include/X11/Form.h 
  43. MANS        = ./xtacho.n
  44.  
  45. $(PROGRAMS): $(OBJS)
  46.     $(CC) $(CCFLAGS) $(OBJS) $(LIBS) -o $(PROGRAMS)  
  47.  
  48. install: $(PROGRAMS)
  49.     install -s $(PROGRAMS) $(DESTDIR)
  50.  
  51. install-man:
  52.     install -c $(MANS) $(MANDIR)
  53.  
  54. clean:
  55.     rm -f $(OBJS) $(PROGRAMS)
  56.  
  57.  
  58.