Project = rpc.statd
pathsearch = $(firstword $(wildcard $(addsuffix /$(1),$(subst :, ,$(PATH)))))
TCONF := $(call pathsearch,tconf)
ifneq "$(TCONF)" ""
Embedded=$(shell tconf --test TARGET_OS_EMBEDDED)
endif
inplace:
@$(MAKE) all SRCROOT=. OBJROOT=. SYMROOT=. DSTROOT=/
include $(MAKEFILEPATH)/CoreOS/ReleaseControl/Common.make
SDKROOT ?= /
WARNING_FLAGS = -Wall -Wextra -Wformat=2 -Wpointer-arith -Wcast-align \
-Wwrite-strings -Wno-unknown-pragmas \
-Wno-missing-field-initializers -Wno-shadow
Extra_CC_Flags = $(WARNING_FLAGS) -D_FORTIFY_SOURCE=2 \
-I$(SRCROOT)/../rpc.lockd -F$(SDKROOT)/System/Library/PrivateFrameworks -fPIE
Extra_LD_Flags = -Wl,-pie -lutil -framework oncrpc -dead_strip
ifeq "$(Embedded)" "YES"
Extra_CC_Flags += -isysroot $(SDKROOT)
endif
DST_DIR = $(DSTROOT)/usr/sbin
MAN_DIR = $(DSTROOT)/usr/share/man/man8
LAUNCHD_DIR = $(DSTROOT)/System/Library/LaunchDaemons
all: $(SYMROOT)/rpc.statd
install:: all
install -d -o root -g wheel -m 755 $(DST_DIR)
install -c -o root -g wheel -m 555 -s $(SYMROOT)/rpc.statd $(DST_DIR)
install -d -o root -g wheel -m 755 $(LAUNCHD_DIR)
install -c -o root -g wheel -m 444 $(SRCROOT)/com.apple.statd.notify.plist $(LAUNCHD_DIR)
install -d -o root -g wheel -m 755 $(MAN_DIR)
install -c -o root -g wheel -m 444 $(SRCROOT)/rpc.statd.8 $(MAN_DIR)
clean::
-rm -f *.o rpc.statd
CFILES = file.c procs.c statd.c sm_inter_svc.c sm_inter_xdr.c
HFILES = statd.h
OFILES = $(CFILES:.c=.o)
$(OFILES): $(HFILES)
$(OBJROOT)/%.o: $(SRCROOT)/%.c
$(CC) -c $(CFLAGS) -o $@ $<
$(SYMROOT)/rpc.statd: $(addprefix $(OBJROOT)/, $(OFILES))
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^
smtest: test.o sm_inter_xdr.o
$(CC) $(CFLAGS) $(LDFLAGS) -o $@ $^