blob: 928314400672bf4e3b734675c90b419648772e90 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
|
include ../common.mk
obj = dir.o
ifeq ($(with_dirsrv),yes)
obj += dir_srv.o
endif
%.o: %.c
$(CC) $(CFLAGS) -c $<
all: $(obj)
$(AR) rcs libecpdir.a $(obj)
clean:
rm -f *.o *.a
|