testit: testit.o dir.o
	cc -g -pipe    testit.o dir.o  -o testit

testit2: testit.o dir2.o
	cc -g -pipe    testit.o dir2.o  -o testit2

testit.o:	testit.c
	cc -g -pipe   -c testit.c

dir.o: dir.c
	cc -g -pipe   -c dir.c

dir2.o: dir2.c
	cc -g -pipe   -c dir2.c

clean:
	-rm testit.o dir.o testit testit2 dir2.o


