CFLAGS = -O3 LIBS = -lm SRC=oc.c gjutil.c gjtimes.c all: clean oc oc: $(SRC) $(CC) $(CFLAGS) $(LIBS) $^ -o $@ -lm clean: rm -f *.o oc