home *** CD-ROM | disk | FTP | other *** search
/ Source Code 1992 March / Source_Code_CD-ROM_Walnut_Creek_March_1992.iso / usenet / altsrcs / 3 / 3512 / Imakefile < prev    next >
Encoding:
Makefile  |  1991-06-20  |  1.0 KB  |  35 lines

  1. #
  2. #  @(#)Imakefile 1.2 90/04/12
  3. #
  4. #  Copyright (c) Rich Burridge - Sun Microsystems Australia.
  5. #                                Al rights reservered.
  6. #
  7. #  Permission is given to distribute these sources, as long as the
  8. #  copyright messages are not removed, and no monies are exchanged.
  9. #
  10. #  No responsibility is taken for any errors inherent either in the comments
  11. #  or the code of this program, but if reported to me then an attempt will
  12. #  be made to fix them.
  13.  
  14. LIBRARY_DEST = /usr/openwin/lib
  15. HEADER_DEST = /usr/openwin/include
  16.  
  17. PROGRAMS = scantool scan
  18. HELPNAME = -DHELPNAME=\"/usr/local/lib/scantool/scantool.help\"
  19.  
  20. DEFINES = $(HELPNAME) $(SELTYPE) $(SIGRET)
  21.  
  22. INCLUDES = -I$(HEADER_DEST) $(DEFINES)
  23. DEPLIBS =
  24. LOCAL_LIBRARIES =  $(LIBRARY_DEST)/libxview.a $(LIBRARY_DEST)/libolgx.a \
  25.            $(LIBRARY_DEST)/libX11.a -lpixrect
  26.  
  27. SRCS = scantool.c graphics.c misc.c xview.c
  28. OBJS = scantool.o graphics.o misc.o xview.o
  29.  
  30. SRCS2 = scan.c scan_compress.c
  31. OBJS2 = scan.o scan_compress.o
  32.  
  33. ComplexProgramTarget(scantool)
  34. SingleProgramTarget(scan, $(OBJS2), /**/, /**/)
  35.