Skip to content
Snippets Groups Projects
Commit beaa00fd authored by rswindell's avatar rswindell
Browse files

Added IFNOEXIST definition.

Fixed make directives (! must begin line for Borland make).
Added path.c/cpp paths.
Removed libobjs.mk (for now).
parent 49a4255b
No related branches found
No related tags found
No related merge requests found
...@@ -123,6 +123,7 @@ OFILE = .obj ...@@ -123,6 +123,7 @@ OFILE = .obj
SOFILE = .dll SOFILE = .dll
LIBFILE = .lib LIBFILE = .lib
DELETE = echo y | del DELETE = echo y | del
IFNOTEXIST = if not exist $@
# Compiler-specific # Compiler-specific
!ifdef msc # Microsoft Visual C++ !ifdef msc # Microsoft Visual C++
...@@ -174,10 +175,13 @@ CIOLIB_SRC = $(SRC_ROOT)$(DIRSEP)conio ...@@ -174,10 +175,13 @@ CIOLIB_SRC = $(SRC_ROOT)$(DIRSEP)conio
SMBLIB_SRC = $(SRC_ROOT)$(DIRSEP)smblib SMBLIB_SRC = $(SRC_ROOT)$(DIRSEP)smblib
UIFC_SRC = $(SRC_ROOT)$(DIRSEP)uifc UIFC_SRC = $(SRC_ROOT)$(DIRSEP)uifc
.path.c = .;$(XPDEV_SRC);$(SMBLIB_SRC);$(CIOLIB_SRC);$(UIFC_SRC)
.path.cpp = .;$(XPDEV_SRC);$(SMBLIB_SRC);$(CIOLIB_SRC);$(UIFC_SRC)
!include targets.mk !include targets.mk
!include $(SRC_ROOT)/build/rules.mk !include $(SRC_ROOT)/build/rules.mk
!include objects.mk # defines $(OBJS) !include objects.mk # defines $(OBJS)
!include libobjs.mk # defines $(LIB_OBJS) #!include libobjs.mk # defines $(LIB_OBJS)
# Implicit C Compile Rule # Implicit C Compile Rule
{.}.c$(OFILE): {.}.c$(OFILE):
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment