CFLAGS    = -g

all: make_cnt
	echo All up to date.

werror.o : wtrace/werror.c
	cc $(CFLAGS) -c wtrace/werror.c -o werror.o

make_cnt.o: make_cnt.c
	cc $(CFLAGS) -c make_cnt.c

make_cnt: werror.o make_cnt.o
	cc -o make_cnt make_cnt.o werror.o

clean:
	rm -f make_cnt *.o # *.err *.map *.tmp *.sym *.bak *.lk1
