aboutsummaryrefslogtreecommitdiffstats
path: root/util-src/Makefile
blob: 5af97f358f7e25db32ebe61075d15ab92c8020a9 (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
27

include ../config.unix

CFLAGS+=-ggdb -I$(LUA_INCDIR)

INSTALL_DATA=install -m644
TARGET?=../util/

ALL=encodings.so hashes.so net.so pposix.so signal.so table.so

.PHONY: all install clean
.SUFFIXES: .c .o .so

all: $(ALL)

install: $(ALL)
	$(INSTALL_DATA) $^ $(TARGET)

clean:
	rm -f $(ALL)

encodings.so: LDLIBS+=$(IDNA_LIBS)

hashes.so: LDLIBS+=-l$(OPENSSL_LIB)

%.so: %.o
	$(LD) $(LDFLAGS) -o $@ $^ $(LDLIBS)