summaryrefslogtreecommitdiff
path: root/builds/win32/win32-def.mk
diff options
context:
space:
mode:
Diffstat (limited to 'builds/win32/win32-def.mk')
-rw-r--r--builds/win32/win32-def.mk20
1 files changed, 7 insertions, 13 deletions
diff --git a/builds/win32/win32-def.mk b/builds/win32/win32-def.mk
index 9b43a039b..a9db459e8 100644
--- a/builds/win32/win32-def.mk
+++ b/builds/win32/win32-def.mk
@@ -3,7 +3,7 @@
#
-# Copyright 1996-2000 by
+# Copyright 1996-2000, 2003 by
# David Turner, Robert Wilhelm, and Werner Lemberg.
#
# This file is part of the FreeType project, and may only be used, modified,
@@ -13,17 +13,10 @@
# fully.
-DELETE := del
-HOSTSEP := $(strip \ )
-BUILD := $(TOP_DIR)$(SEP)builds$(SEP)win32
-PLATFORM := win32
-
-# by default, we use "\" as a separator on Win32
-# but certain compilers accept "/" as well
-#
-ifndef SEP
- SEP := $(HOSTSEP)
-endif
+DELETE := del
+SEP := $(strip \ )
+BUILD_DIR := $(TOP_DIR)/builds/win32
+PLATFORM := win32
# The directory where all object files are placed.
@@ -36,7 +29,7 @@ endif
# make -f %TOP_DIR%/Makefile
#
ifndef OBJ_DIR
- OBJ_DIR := $(TOP_DIR)$(SEP)objs
+ OBJ_DIR := $(TOP_DIR)/objs
endif
@@ -58,4 +51,5 @@ LIBRARY := $(PROJECT)
#
NO_OUTPUT = 2> nul
+
# EOF