all: cmp2

cmp2: obj
	gcc *.o -o cmp2

obj: 	
	gcc -I. -c -DNULL_DEVICE=\"/dev/null\" *.c

clean:
	rm -f *.o cmp2 core
