TARGET = 1.1
all:
	gcc -c foo.c
	g++ 1.1.cpp foo.o -o $(TARGET)
clean:
	rm -rf *.o $(TARGET)
