aboutsummaryrefslogtreecommitdiffstats
path: root/remote_cmds/tftpd.tproj
diff options
context:
space:
mode:
authorCameron Katri <me@cameronkatri.com>2021-05-10 10:44:54 -0400
committerCameron Katri <me@cameronkatri.com>2021-05-10 14:59:06 -0400
commitb9db19b71926ba1d2b0722a43cf538bf139fc0d9 (patch)
tree5fdb44eb55955dcaa6155b36304ea938d20ccaa9 /remote_cmds/tftpd.tproj
parent911b83fe05d682c541e38fecd55fdad0755be2ca (diff)
downloadapple_cmds-b9db19b71926ba1d2b0722a43cf538bf139fc0d9.tar.gz
apple_cmds-b9db19b71926ba1d2b0722a43cf538bf139fc0d9.tar.zst
apple_cmds-b9db19b71926ba1d2b0722a43cf538bf139fc0d9.zip
remote_cmds: All compiling
Diffstat (limited to 'remote_cmds/tftpd.tproj')
-rw-r--r--remote_cmds/tftpd.tproj/Makefile19
1 files changed, 6 insertions, 13 deletions
diff --git a/remote_cmds/tftpd.tproj/Makefile b/remote_cmds/tftpd.tproj/Makefile
index e48f484..60b2853 100644
--- a/remote_cmds/tftpd.tproj/Makefile
+++ b/remote_cmds/tftpd.tproj/Makefile
@@ -1,16 +1,9 @@
-Project = tftpd
-Install_Dir = /usr/libexec
+PROG= tftpd
+SRCS= tftpd.c tftpsubs.c
+MAN= tftpd.8
-HFILES = tftpsubs.h
-CFILES = tftpd.c ../tftp.tproj/tftpsubs.c
-MANPAGES = tftpd.8
-LAUNCHD_PLISTS = tftp.plist
+BINDIR=/usr/libexec
-Extra_CC_Flags = -Wall -Werror -fPIE
-Extra_CC_Flags += -D__FBSDID=__RCSID
-Extra_LD_Flags = -dead_strip -pie
+.PATH: ../tftp.tproj
-include $(MAKEFILEPATH)/CoreOS/ReleaseControl/BSDCommon.make
-
-after_install:
- $(MKDIR) "$(DSTROOT)/private/tftpboot"
+.include <bsd.prog.mk>