home *** CD-ROM | disk | FTP | other *** search
/ Simtel MSDOS - Coast to Coast / simteldosarchivecoasttocoast.iso / dv_x / dvix.zip / IMAKEFIL < prev    next >
Text File  |  1992-10-02  |  646b  |  40 lines

  1. #
  2. # -DMSBITFIRST usual server uses most significant bit first pixrects
  3. # -DMSBYTEFIRST usual server uses most significant bit first pixrects
  4. # -DX11DVI selects packing size
  5. #
  6.          CFLAGS = -g -DX11DVI -DMSBITFIRST -DMSBYTEFIRST
  7. LOCAL_LIBRARIES = $(XLIB)
  8.        PROGRAMS = dvix
  9.  
  10. SRCS1=\
  11.     xbmdvi.c\
  12.     bitmap.c\
  13.     dvi_draw.c\
  14.     generic.c\
  15.     mktable.c\
  16.     path_open.c\
  17.     special.c\
  18.     shrink.c\
  19.     table.c\
  20.     texfont.c
  21.  
  22. OBJS1=\
  23.     xbmdvi.o\
  24.     bitmap.o\
  25.     dvi_draw.o\
  26.     generic.o\
  27.     path_open.o\
  28.     shrink.o\
  29.     special.o\
  30.     table.o\
  31.     texfont.o
  32.  
  33. ComplexProgramTarget_1(dvix,$(LOCAL_LIBRARIES),-lm)
  34.  
  35. table.c::    mktable
  36.     ./mktable > table.c
  37.  
  38. clean::
  39.     $(RM) mktable table.c
  40.