home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-385-Vol-1of3.iso / x / xdaliclk.zip / Imakefile < prev    next >
Makefile  |  1992-06-11  |  1KB  |  37 lines

  1. /**/# Imakefile file for xdaliclock, Copyright (c) 1991 Jamie Zawinski.
  2. /**/#
  3. /**/#
  4. /**/# If you don't have the SHAPE extension, you shouldn't pass -DSHAPE
  5. /**/# and you don't need to link with -lXext.
  6. /**/#
  7. /**/# If your system doesn't have the select() system call, use -DNO_SELECT.
  8. /**/# This will make the usleep() system call be used instead (this pauses
  9. /**/# for the given number of microseconds).  If your system doesn't have
  10. /**/# either select() or usleep(), you've got some hacking to do.  :-)
  11. /**/#
  12.            SRCS = xdaliclock.c
  13.            OBJS = xdaliclock.o
  14.        INCLUDES = -I./numbers -I./numbers2 $(TOP_INCLUDES)
  15.         DEFINES = -DBUILTIN_FONT -DBUILTIN_FONT_2 ExtensionDefines
  16.     CDEBUGFLAGS = -O
  17. LOCAL_LIBRARIES = $(EXTENSIONLIB) $(XLIB)
  18.             TAR = tar
  19.  
  20. ComplexProgramTarget(xdaliclock)
  21.  
  22. xdaliclock.o: defaults.h
  23.  
  24. VMSFILES= xdaliclock.opt xdaliclock_build.com
  25.  
  26. TARFILES= README xdaliclock.man Imakefile Makefile.simple \
  27.     xdaliclock.c defaults.h vroot.h $(VMSFILES) numbers numbers2
  28.  
  29. uu:: xdaliclock.tar.Z.uu
  30.  
  31. xdaliclock.tar: $(TARFILES)
  32.     $(TAR) -vcf $@ $(TARFILES)
  33. xdaliclock.tar.Z: $(TARFILES)
  34.     $(TAR) -vcf - $(TARFILES) | compress > $@
  35. xdaliclock.tar.Z.uu: $(TARFILES)
  36.     $(TAR) -vcf - $(TARFILES) | compress | uuencode $(@:.uu=) > $@
  37.