home *** CD-ROM | disk | FTP | other *** search
Makefile | 1992-07-14 | 408 b | 17 lines |
- # Imakefile file for xrotfont
- # Copyright (c) 1992 Alan Richardson
-
- # If your system doesn't have the `usleep()' function,
- # add -DNO_USLEEP to DEFINES
-
- OBJS = main.o events.o openwin.o misc.o options.o \
- paintscreen.o imagetext.o hersheytext.o
- DEFINES =
- CDEBUGFLAGS = -O
-
- xrotfont : $(OBJS)
- cc -o xrotfont $(OBJS) $(DEFINES) -lX11 -lm
-
- $(OBJS) : all.h
-
-