all:
	g++ -c *.cpp 
	gcc -c *.c 
	g++ *.o -o test

clean:
	rm *.o test
