blob: 3b7b5e9f9201d1f6e18d90779fd5c28afc2b38de (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
|
tester: hashtable.o tester.o hashtable_itr.o
gcc -g -Wall -O -lm -o tester hashtable.o hashtable_itr.o tester.o
all: tester old_tester
tester.o: tester.c
gcc -g -Wall -O -c tester.c -o tester.o
old_tester: hashtable_powers.o tester.o hashtable_itr.o
gcc -g -Wall -O -o old_tester hashtable_powers.o hashtable_itr.o tester.o
hashtable_powers.o: hashtable_powers.c
gcc -g -Wall -O -c hashtable_powers.c -o hashtable_powers.o
hashtable.o: hashtable.c
gcc -g -Wall -O -c hashtable.c -o hashtable.o
hashtable_itr.o: hashtable_itr.c
gcc -g -Wall -O -c hashtable_itr.c -o hashtable_itr.o
tidy:
rm *.o
clean: tidy
rm -f tester old_tester
|