# This makefile builds libplg.a, a library of only the lower-level drawing 
# functions E*(), for use by programs other than ploticus.
#
# this makefile supports only x11 and ps ...
#
# Do: make clean; make -f Makefile_plg
#

CFLAGS = -DNOGD -DNOSVG -DNOSWF

OBJ = plg.o arrow.o color.o err.o lib.o stub.o winscale.o glroutines.o interact.o pcode.o  \
	init.o mark.o block.o lineclip.o x11.o ps.o


all: $(OBJ)
	ar r libplg.a $(OBJ) 
	rm $(OBJ)

clean:
	rm $(OBJ)
