Version 3.6.0.4, tag libreoffice-3.6.0.4
[LibreOffice.git] / dmake / unix / sysvr1 / config.mk
blobd1cd2d8810f5ccae1abffa2857451031b1664247
1 # This is the SysV R3 UNIX configuration file for DMAKE
2 # It simply modifies the values of SRC, and checks to see if
3 # OSENVIRONMENT is defined. If so it includes the appropriate
4 # config.mk file.
6 # It also sets the values of .SOURCE.c and .SOURCE.h to include the local
7 # directory.
9 osrdir := $(OS)$(DIRSEPSTR)$(OSRELEASE)
11 # The following are required sources
12 OSDSRC := vfprintf.c
14 .IF $(OSDSRC)
15 SRC += $(OSDSRC)
16 .SETDIR=$(osrdir) : $(OSDSRC)
17 .END
19 .SOURCE.h : $(osrdir)
21 # Local configuration modifications for CFLAGS, there's local SysV includes
22 # too.
23 CFLAGS += -I$(osrdir)
25 # See if we modify anything in the lower levels.
26 .IF $(OSENVIRONMENT) != $(NULL)
27 .INCLUDE .IGNORE : $(osrdir)$(DIRSEPSTR)$(OSENVIRONMENT)$(DIRSEPSTR)config.mk
28 .END