home *** CD-ROM | disk | FTP | other *** search
/ Usenet 1994 January / usenetsourcesnewsgroupsinfomagicjanuary1994.iso / sources / x / volume18 / xrotfont / part01 / Imakefile < prev    next >
Encoding:
Makefile  |  1992-07-14  |  408 b   |  17 lines

  1. # Imakefile file for xrotfont
  2. #   Copyright (c) 1992 Alan Richardson
  3.  
  4. # If your system doesn't have the `usleep()' function,
  5. #  add  -DNO_USLEEP  to  DEFINES
  6.  
  7.            OBJS = main.o events.o openwin.o misc.o options.o \
  8.                   paintscreen.o imagetext.o hersheytext.o
  9.         DEFINES = 
  10.     CDEBUGFLAGS = -O
  11.  
  12. xrotfont : $(OBJS)
  13.       cc -o xrotfont $(OBJS) $(DEFINES) -lX11 -lm
  14.  
  15. $(OBJS) : all.h
  16.  
  17.