.PHONY: clean
P=temp_count
OBJECTS= temp.o temp_count.o
CFLAGS = -g -Wall -O3
LDLIBS=''
CC=gcc
$(P): $(OBJECTS)
clean:
rm -f *.o $(P)