## ## Makefile ## ## Mike Smith ## CC = gcc DEBUG = -g -ansi -W -Wall -pedantic INCLUDES= -I$(CS50_INC) LIB = -L$(CS50_LIB) -lcs50 CFLAGS = $(DEBUG) $(INCLUDES) LDFLAGS = $(LIB) all: eco smash clean: /bin/rm -f eco smash *.o *~ ## end of Makefile