# Hugh Fisher Jan 95 / Ingrid Jakobsen Mar 95 # Makefile for X plot version of partimatrix # I use prototypes, so don't use the default Sun thing. Gnu compiler works fine. CC = gcc # Point CFLAGS to the local X11 include directory #CFLAGS = -I/usr/openwin/include #CFLAGS = -I/usr/X11R6/include #CFLAGS = -I/usr/local/X11/include # Point LDFLAGS to the local X11 library #LDFLAGS = -L/usr/openwin/lib #LDFLAGS = -L/usr/X11R6/lib #LIBS = -lX11 -lm LIBS = -lm -lX11 OBJS = pmXPlot.o partimatrix: $(OBJS) partimatrix.c $(CC) $(CFLAGS) partimatrix.c -o partimatrix $(OBJS) $(LDFLAGS) $(LIBS) pmXPlot.o: XPlot.h