#!pmake

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

compile: tohex

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

clean:
	rm -f *.o
	rm -f core errors.txt tmp
	rm -f tohex

all: clean compile
