CC=gcc

all:
	$(CC) -c test.c -o test.o
	$(CC) test.o -o test

clean:
	rm -f test
	rm -f test.o
