CFLAGS= -O
LIBS= 
CC=gcc
SRC= upthrust.c
OBJ= $(SRC:.c=.o)

upthrust: $(OBJ) 
	$(CC) $(CFLAGS) -o upthrust $(OBJ) $(LIBS)

clean:
	rm -f core *.o

