home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume21 / kdrill / part02 / Imakefile < prev    next >
Encoding:
Makefile  |  1993-10-07  |  881 b   |  36 lines

  1. DEPLIBS = $(DEPXLIB)
  2. /* Sun compilations require having the XMU lib here...
  3.  * I don't know about "normal" systems
  4.  */
  5. LOCAL_LIBRARIES = $(XLIB) $(XTOOLLIB) $(XAWLIB) $(XMULIB)
  6.  
  7.  
  8. /*
  9.  *R4 NOTE!!!
  10.  *  I am told you can change fonts to 
  11.  *  "jeuc.16x32". [in "init.c", or with the -smallkanji/-kanjifont flags]
  12.  *  or whatever 16-bit kanji font your system happens to have.
  13.  *   That was for kdrill v1.
  14.  * However, Since I rely on Xaw's 16-bit handling in V2 of kdrill,
  15.  *  I am no longer sure this will work.
  16.  */
  17.  
  18. /* DEFINES =   -DDEBUG*/
  19.  
  20. /* 
  21.  * I don't like putting <X11/...> for everything, so..
  22.  */
  23. INCLUDES = -I/usr/include/X11
  24.  
  25. /*
  26.  *  If you want to force things...
  27.  * CDEBUGFLAGS = -g
  28.  * BINDIR = /usr/local/bin/X11
  29.  */
  30.  
  31. SRCS = main.c readfile.c game.c init.c widgets.c attributes.c
  32. OBJS = main.o readfile.o game.o init.o widgets.o attributes.o
  33.  
  34. ComplexProgramTarget(kdrill)
  35.  
  36.