# # Makefile for mini X library. This will create a relocatable "X.o" with # functions outlined in X.h. Most users should not need to make any changes # to anything in this subdirectory. # # Which C compiler are we using this week? CC = gcc # Optimization Level # CFLAGS = -g CFLAGS = -O -I/local/include X.o: X.c X.h clean: rm *.o