cs240/hw/hw10/Makefile

5 lines
163 B
Makefile
Raw Permalink Normal View History

2018-10-15 17:20:57 -04:00
all: hashtableTest
hashtableTest: hashtable.c extra_tests.c hashtable.h hash.o
gcc -Wall -g -Werror -std=gnu99 -o hashtableTest extra_tests.c hashtable.c hash.o