summaryrefslogtreecommitdiff
path: root/code/core/htable/Makefile
blob: af8d7c1d28d74c00fae686ad9110fe5f92d964f5 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
CFLAGS=-I.. -std=gnu89 $(PIC)

obj = htable.o hashtable.o hashtable_itr.o


%.o: %.c
	$(CC) $(CFLAGS) -c $<

all: $(obj)
	$(AR) rcs libecpht.a $(obj)

clean:
	rm -f *.o *.a