home *** CD-ROM | disk | FTP | other *** search
- #
- # This is the make file for the eed printer drivers.
- # In order to run it gcc is assumed to be available.
- #
- # Gershon Elber, Jun 1989
- #
-
- #
- # Set the includes and libs directories to the right place. Libraries
- # used in this program:
- # 1. libgif.a - gif interface library routines.
- #
- INCS = -I. -I/n/crocus/u/gershon/sm/gif_lib/lib
- LIBS = /n/crocus/u/gershon/sm/gif_lib/lib/libgif.a
-
- # Your C compiler (BSD 4.3)
- # CC = gcc
- # CFLAGS = -O -c -W -Wreturn-type -Wcomment
- # CFLAGS = -g -pg -c -W -Wreturn-type -Wcomment
- # MORELIBS =
-
- # Your C compiler (cc on SGI4D Irix 3.2)
- CC = cc
- # CFLAGS = -O -Olimit 1000 -Wf,-XNh5000 -Wf,-XNd5000 -G 4
- CFLAGS = -g -p -Olimit 1000 -Wf,-XNh5000 -Wf,-XNd5000 -G 4
- MORELIBS = -lbsd
-
- CommonOBJS = config.o eelibs1.o eelibs2.o eeload.o eeredraw.o eestring.o \
- priorque.o
-
- EpsonOBJS = eedepson.o igraphep.o virtrstr.o
-
- PSOBJS = eed-ps.o igraphps.o
-
- .c.o:
- $(CC) $(CFLAGS) $(INCS) -c $<
-
- all: eed-ps eedepson
-
- eedepson: $(CommonOBJS) $(EpsonOBJS)
- cc -o eedepson $(CommonOBJS) $(EpsonOBJS) $(LIBS) $(MORELIBS) -lm
-
- eed-ps: $(CommonOBJS) $(PSOBJS)
- cc -o eed-ps $(CommonOBJS) $(PSOBJS) $(MORELIBS) -lm
-
-
- config.o: program.h config.h
- eedepson.o: program.h config.h igraph.h eelibs.h eeredraw.h eeload.h
- eed-ps.o: program.h config.h igraph.h eelibs.h eeredraw.h eeload.h
- eelibs1.o: program.h priorque.h eelibs.h eelibsl.h eeredraw.h igraph.h
- eelibs2.o: program.h priorque.h eelibs.h eelibsl.h eeredraw.h eestring.h igraph.h
- eeload.o: program.h eelibs.h eeredraw.h eeload.h virtrstr.h
- eeredraw.o: program.h igraph.h eeredraw.h eestring.h
- eestring.o: program.h igraph.h eestring.h
- igraphep.o: virtrstr.h program.h igraph.h
- igraphps.o: program.h igraph.h
- priorque.o: program.h priorque.h
- virtrstr.o: virtrstr.h
-