home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 October / usenetsourcesnewsgroupsinfomagicoctober1994disk2.iso / x / volume10 / xchrom / part01 / Makefile.std < prev    next >
Makefile  |  1990-12-07  |  928b  |  38 lines

  1. # Last edited: Thu Nov  1 14:12:27 1990 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.  
  7. SHARFLAGS= -c
  8.  
  9. #
  10. # -DICCCM_COMP -- if the window manager is ICCCM compliant (tested under
  11. #                 OpenWindows 2.0)
  12. #
  13. CFLAGS= -O -DICCCM_COMP
  14. LDFLAGS= 
  15. LIBS= -lXmu -lXt -lX11 -lm
  16.  
  17. all: xchrom
  18.  
  19. xchrom: $(OBJS)
  20.     cc $(LDFLAGS) $(OBJS) $(LIBS) -o xchrom
  21.  
  22. clean:
  23.     rm -f $(OBJS) *~ core xchrom
  24.  
  25. xchrom.shar:
  26.     shar $(SHARFLAGS) README Imakefile Makefile.std xchrom.man \
  27.     $(HFILES) $(SRCS) > $@
  28.  
  29. xchrom.shar.uu: xchrom.shar
  30.     cat xchrom.shar | uuencode xchrom.shar > $@
  31.  
  32. xchrom.tar.Z:
  33.     tar cvf - Imakefile README Makefile.std xchrom.man $(HFILES) $(SRCS) | \
  34.     compress > $@
  35.  
  36. Xchrom.o: Xchrom.c Xchrom.h XchromP.h
  37. xchrom.o: xchrom.c xchrom.xbm xchrom_mask.xbm patchlevel.h
  38.