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