
default: testij

DEFS=-g -I -I$(ROOT)/usr/include

testij: ij.o testij.c
	cc -o testij testij.c ij.o $(DEFS) -lvl

ij.o: ij.c ij.h
	cc -c ij.c $(DEFS)

