
CFLAGS = -O3
LIBS = -lm
SRC=oc.c gjutil.c gjtimes.c

all: clean oc

oc: $(SRC) 
	$(CC) $(CFLAGS) $(LIBS) $^ -o $@

clean: 
	rm -f *.o oc 

