diff options
Diffstat (limited to 'dmake/startup/unix/bsd43')
-rw-r--r-- | dmake/startup/unix/bsd43/macros.mk | 11 | ||||
-rw-r--r-- | dmake/startup/unix/bsd43/recipes.mk | 13 |
2 files changed, 24 insertions, 0 deletions
diff --git a/dmake/startup/unix/bsd43/macros.mk b/dmake/startup/unix/bsd43/macros.mk new file mode 100644 index 000000000000..be4ae5fe45e9 --- /dev/null +++ b/dmake/startup/unix/bsd43/macros.mk @@ -0,0 +1,11 @@ +# Define additional Berkely UNIX specific macros. +# + +# Process environment-specific refinements, if any. +.IF $(OSENVIRONMENT) + .INCLUDE .NOINFER .IGNORE : $(INCFILENAME:d)$(OSENVIRONMENT)$/macros.mk +.ENDIF + +# Set defaults for local OS release +RANLIB *:= ranlib +PRINT *:= lpr diff --git a/dmake/startup/unix/bsd43/recipes.mk b/dmake/startup/unix/bsd43/recipes.mk new file mode 100644 index 000000000000..557ac7c8c17b --- /dev/null +++ b/dmake/startup/unix/bsd43/recipes.mk @@ -0,0 +1,13 @@ +# Define additional Berkeley UNIX specific build rules and recipes. +# + +# Recipe to make archive files. +%$A .GROUP : + $(AR) $(ARFLAGS) $@ $? + $(RM) $(RMFLAGS) $? + $(RANLIB) $@ + +# Process environment-specific refinements, if any. +.IF $(OSENVIRONMENT) + .INCLUDE .NOINFER .IGNORE : $(INCFILENAME:d)$(OSENVIRONMENT)$/recipes.mk +.ENDIF |