add NetBSD Makefiles (#22)

This commit is contained in:
NishiOwO
2023-01-30 11:24:54 +09:00
committed by GitHub
parent af1c9aaaa2
commit 2e9a6053fa
2 changed files with 380 additions and 0 deletions

View File

@@ -16,6 +16,9 @@ dev_::
@echo " freebsd -- x86 running freebsd DYNAMIC"
@echo " freebsd-static -- x86 running freebsd ALL STATIC"
@echo " freebsd-static-motif -- x86 running freebsd STATIC MOTIF"
@echo " netbsd -- x86 running netbsd DYNAMIC"
@echo " netbsd-static -- x86 running netbsd ALL STATIC"
@echo " netbsd-static-motif -- x86 running netbsd STATIC MOTIF"
@echo " linux -- x86 running Linux 1.2.13 DYNAMIC"
@echo " linux-static -- x86 running Linux 1.2.13 ALL STATIC"
@echo " linux-static-motif -- x86 running Linux 1.2.13 STATIC MOTIF"
@@ -62,6 +65,30 @@ p_freebsd_static_motif: rm_and_touch
q_freebsd_static_motif: rm_and_touch
$(MAKE) -f makefiles/Makefile.freebsd q_static_motifd DEV_ARCH=freebsd
dev_netbsd: rm_and_touch netbsd
netbsd: rm_and_touch
$(MAKE) -f makefiles/Makefile.netbsd DEV_ARCH=netbsd
p_netbsd: rm_and_touch
$(MAKE) -f makefiles/Makefile.netbsd purifyd DEV_ARCH=netbsd
q_netbsd: rm_and_touch
$(MAKE) -f makefiles/Makefile.netbsd quantifyd DEV_ARCH=netbsd
dev_netbsd_static: rm_and_touch netbsd_static
netbsd_static: rm_and_touch
$(MAKE) -f makefiles/Makefile.netbsd staticd DEV_ARCH=netbsd
p_netbsd_static: rm_and_touch
$(MAKE) -f makefiles/Makefile.netbsd p_staticd DEV_ARCH=netbsd
q_netbsd_static: rm_and_touch
$(MAKE) -f makefiles/Makefile.netbsd q_staticd DEV_ARCH=netbsd
dev_netbsd_static_motif: rm_and_touch netbsd_static_motif
netbsd_static_motif: rm_and_touch
$(MAKE) -f makefiles/Makefile.netbsd static_motifd DEV_ARCH=netbsd
p_netbsd_static_motif: rm_and_touch
$(MAKE) -f makefiles/Makefile.netbsd p_static_motifd DEV_ARCH=netbsd
q_netbsd_static_motif: rm_and_touch
$(MAKE) -f makefiles/Makefile.netbsd q_static_motifd DEV_ARCH=netbsd
dev_linux: rm_and_touch linux
linux: rm_and_touch
$(MAKE) -f makefiles/Makefile.linux DEV_ARCH=linux