home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / x / volume14 / xchrom / part01 / Xchrom-1.6 / Makefile.std < prev    next >
Encoding:
Makefile  |  1991-08-26  |  769 b   |  29 lines

  1. # Last edited: Mon Aug 12 13:53:23 1991 by olafh (Olaf Heimburger) on gecko
  2. # Please read the accompanying README file before running Make
  3. SRCS= Xchrom.c xchrom.c
  4. OBJS= Xchrom.o xchrom.o
  5. HFILES= Xchrom.h XchromP.h patchlevel.h xchrom.xbm xchrom_mask.xbm
  6. OTHERFILES= README Imakefile Makefile.std xchrom.man
  7.  
  8. #
  9. # -DICCCM_COMP -- if the window manager is ICCCM compliant (tested under
  10. #                 OpenWindows 2.0)
  11. #
  12. CFLAGS= -O -DICCCM_COMP 
  13. LDFLAGS= 
  14. LIBS= -lXmu -lXt -lX11 -lm
  15.  
  16. all: xchrom
  17.  
  18. xchrom: $(OBJS)
  19.     cc $(LDFLAGS) $(OBJS) $(LIBS) -o xchrom
  20.  
  21. clean:
  22.     rm -f $(OBJS) *~ core xchrom *.shar *.shar.uu *.tar.Z TAGS
  23.  
  24. TAGS: $(HFILES) $(SRCS)
  25.     etags $(HFILES) $(SRCS)
  26.  
  27. Xchrom.o: Xchrom.c Xchrom.h XchromP.h
  28. xchrom.o: xchrom.c xchrom.xbm xchrom_mask.xbm patchlevel.h
  29.