diff options
author | Jens-Heiner Rechtien <hr@openoffice.org> | 2000-09-22 14:33:37 +0000 |
---|---|---|
committer | Jens-Heiner Rechtien <hr@openoffice.org> | 2000-09-22 14:33:37 +0000 |
commit | b501a54cf959bc549810fb24ca6f9584dc5c9cf3 (patch) | |
tree | b78fbbc5c0f6959529f2553e3bbb83b077eaa17c /dmake/startup/unix/bsd43 | |
parent | 17e0108b4e8d91f9acfe376ee231418830392460 (diff) |
initial import
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 |