all: compile

compile: main.cpp src1.cpp src1.h
	g++ *.cpp -o main

clean:
	rm -f main
