#!gmake

WNLIB = ../../..
CFLAGS = -g  -cckr -I$(WNLIB)/cc/h
ARCHIVES = $(WNLIB)/cc/low/text.a
OBJS = gendoc.o

compile: gendoc

gendoc: $(OBJS)
	cc -g -o gendoc $(OBJS) $(ARCHIVES) -lm 

clean:
	set nonomatch; rm -f *.o
	rm -f core errors.txt tmp
	rm -f gendoc

all: clean compile
