home *** CD-ROM | disk | FTP | other *** search
/ The World of Computer Software / World_Of_Computer_Software-02-387-Vol-3of3.iso / s / sd-27.zip / Imakefile < prev    next >
Makefile  |  1992-11-23  |  1KB  |  46 lines

  1. /*
  2.  * Imakefile for Sd (square dance caller's helper)
  3.  * Time-stamp: <92/11/22 21:53:36 gildea>
  4.  *
  5.  * Run "xmkmf" to generate a Makefile from this description.
  6.  * Then run "make" to build the Sd system.
  7.  */
  8.  
  9. SD_SRCS = sdmain.c sdinit.c sdutil.c sdbasic.c sdtables.c \
  10.           sdtop.c sd.c sdpreds.c sd12.c sd16.c \
  11.           sdgetout.c sdmoves.c sdtand.c sdconc.c sdistort.c \
  12.           sdsi.c sdui-x11.c
  13.  
  14. SD_OBJS = sdmain.o sdinit.o sdutil.o sdbasic.o sdtables.o \
  15.           sdtop.o sd.o sdpreds.o sd12.o sd16.o \
  16.           sdgetout.o sdmoves.o sdtand.o sdconc.o sdistort.o \
  17.           sdsi.o sdui-x11.o
  18.  
  19. SRCS2 = mkcalls.c
  20. OBJS2 = mkcalls.o
  21.  
  22. SRCS = $(SD_SRCS) $(SRCS2)
  23. OBJS = $(SD_OBJS) $(OBJS2)
  24.  
  25. AllTarget(sd mkcalls sd_calls.dat)
  26.  
  27. NormalProgramTarget(sd, $(SD_OBJS), XawClientDepLibs, XawClientLibs, /**/)
  28.  
  29. NormalProgramTarget(mkcalls, $(OBJS2), /**/, /**/, /**/)
  30.  
  31. sd_calls.dat: sd_calls.txt mkcalls
  32.     ./mkcalls
  33.  
  34. clean::
  35.     $(RM) sd_calls.dat sd.tar
  36.  
  37.  
  38. DISTFILES = README Relnotes relnotes.archive Imakefile Makefile Sd.res \
  39.             sd_calls.txt COPYING database.doc sd_doc.txinfo
  40. DISTSRCS = sd.h database.h paths.h
  41.  
  42. distrib:
  43.     tar cvf sd.tar $(DISTFILES) $(SD_SRCS) $(DISTSRCS) $(SRCS2)
  44.  
  45. DependTarget()            
  46.