zeroconf/Makefile

69 lines
1.4 KiB
Makefile
Raw Permalink Normal View History

2011-04-10 13:51:52 +00:00
#
# Makefile for tinysvcmdns
#
2020-10-16 14:32:18 +00:00
MV ?= mv
2020-07-24 09:16:53 +00:00
CPPFLAGS += -DPTHREAD_CREATE_DETACHED_SUPPORTED
#CPPFLAGS += -DNDEBUG
CPPFLAGS += $(CPPFLAGS_EXTRA)
2011-04-10 13:51:52 +00:00
CFLAGS += -Wall -pedantic -std=gnu99
CFLAGS += -g
CFLAGS += -O2
2020-07-24 09:16:53 +00:00
CFLAGS += $(CFLAGS_EXTRA)
2011-04-10 13:51:52 +00:00
LDLIBS = -lpthread
ifneq ($(CROSS_COMPILE),)
CC = gcc
CC := $(CROSS_COMPILE)$(CC)
AR := $(CROSS_COMPILE)$(AR)
endif
2020-07-28 15:42:57 +00:00
BIN=testmdnsd mdnsd
2011-04-10 13:51:52 +00:00
LIBTINYSVCMDNS_OBJS = mdns.o mdnsd.o
.PHONY: all clean opkg release opkg-service opkg-init
2011-04-10 13:51:52 +00:00
all: $(BIN) libtinysvcmdns.a
clean:
2020-07-28 15:42:57 +00:00
-$(RM) $(LIBTINYSVCMDNS_OBJS)
2011-04-10 13:51:52 +00:00
-$(RM) $(BIN)
-$(RM) libtinysvcmdns.a
mdns.o: mdns.h
2011-04-10 13:51:52 +00:00
mdnsd.o: mdns.h mdnsd.h
testmdnsd.o: mdnsd.h
2011-04-10 13:51:52 +00:00
testmdnsd: testmdnsd.o libtinysvcmdns.a
libtinysvcmdns.a: $(patsubst %, libtinysvcmdns.a(%), $(LIBTINYSVCMDNS_OBJS))
mdnsd: testmdnsd
strip -o $@ $<
opkg-init: $(wildcard etc/init.d/*)
install -d opkg/etc/init.d
install -p $? opkg/etc/init.d/
opkg-service: $(wildcard etc/modservice.d/*)
install -d opkg/etc/modservice.d
install -m 644 -p $? opkg/etc/modservice.d/
opkg: mdnsd $(wildcard opkg/CONTROL/*) opkg-init opkg-service
install -d opkg/sbin
install -p $< opkg/sbin/
2020-10-16 14:32:18 +00:00
$(foreach opk,$(wildcard *.opk),$(MV) $(opk) $(opk).old; )
opkg-pack opkg
2020-07-28 15:42:57 +00:00
release: opkg
tagname=$$(echo zeroconf*.opk | sed -n 'p;q') && \
tagname="$${tagname%_*.*}" && \
test -n "$${tagname}" && \
git tag -f -a -m "Release $${tagname}" "$${tagname}"