# Makefile for GB2PS
# CCLIB -- the path and name of Chinese font file

CCLIB=$(PWD)/csong24.plib

CFLAGS	= -DCCLIB=\"${CCLIB}\"
     
gb2ps:gb2ps.c
	cc ${CFLAGS} -o gb2ps gb2ps.c
     
clean:
	rm -f *.o core gb2ps
     










