estate: rename extra_undefined() to alloc_estate_whole()
[smatch.git] / cwchash / Makefile
blob5a1f65cd3573ec3f1fe8618c382bfcfdfface40d
2 tester: hashtable.o tester.o hashtable_itr.o
3 gcc -g -Wall -O -o tester hashtable.o hashtable_itr.o tester.o -lm
5 all: tester old_tester
7 tester.o: tester.c
8 gcc -g -Wall -O -c tester.c -o tester.o
10 old_tester: hashtable_powers.o tester.o hashtable_itr.o
11 gcc -g -Wall -O -o old_tester hashtable_powers.o hashtable_itr.o tester.o
13 hashtable_powers.o: hashtable_powers.c
14 gcc -g -Wall -O -c hashtable_powers.c -o hashtable_powers.o
16 hashtable.o: hashtable.c
17 gcc -g -Wall -O -c hashtable.c -o hashtable.o
19 hashtable_itr.o: hashtable_itr.c
20 gcc -g -Wall -O -c hashtable_itr.c -o hashtable_itr.o
22 tidy:
23 rm *.o
25 clean: tidy
26 rm -f tester old_tester