# Makefile for CS50 library # Builds and compiles all these utility functions into a library. # # If you prefer our data-structure implementation over your own, # modify the rule for `$(LIB)`: # $(LIB): libcs50-given.a # cp libcs50-given.a $(LIB) # # CS50, Summer 2021 # the target library LIB = libcs50.a # use provided library $(LIB): libcs50-given.a cp libcs50-given.a $(LIB) .PHONY: clean # clean up after our compilation clean: rm -f core rm -f $(LIB) *~ *.o