blob: 7ef95d5bd995360cf1fa9a89d6b9992d3ed919b1 (
plain)
| 1
2
3
4
5
6
7
8
9
10
11
12
13
14
 | include ../Makefile.platform
CFLAGS += $(PIC) -I.. -std=gnu89
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
 |