forked from Garux/netradiant-custom
-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
split up mingw-Makefile.inc into mingw-Makefile.inc, mingw-radiantdep…
…s-Makefile.inc
- Loading branch information
Showing
4 changed files
with
17 additions
and
14 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,3 +7,4 @@ MINGW_EXEC_PREFIX = i486-mingw32- | |
|
||
# use mingw32 | ||
include mingw-Makefile.inc | ||
include mingw-radiantdeps-Makefile.inc |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,15 @@ | ||
# where the dependencies package is extracted | ||
RADIANT_DEPENDENCIES_PREFIX = $(HOME)/netradiant-dependencies-mingw32/ | ||
|
||
# run the prefix fixing tool | ||
IGNORETHIS := $(shell cd $(RADIANT_DEPENDENCIES_PREFIX) && ./fixprefix.sh) | ||
|
||
# set the environment for make | ||
CFLAGS += | ||
CXXFLAGS += | ||
CPPFLAGS += -I$(RADIANT_DEPENDENCIES_PREFIX)/radiantdeps/include | ||
LDFLAGS += -L$(RADIANT_DEPENDENCIES_PREFIX)/radiantdeps/lib | ||
CPPFLAGS += -I$(RADIANT_DEPENDENCIES_PREFIX)/gtk/include | ||
LDFLAGS += -L$(RADIANT_DEPENDENCIES_PREFIX)/gtk/lib | ||
PKG_CONFIG_PATH := $(RADIANT_DEPENDENCIES_PREFIX)/gtk/lib/pkgconfig:$(RADIANT_DEPENDENCIES_PREFIX)/radiantdeps/lib/pkgconfig:$(PKG_CONFIG_PATH) | ||
WHICHDLL = $(RADIANT_DEPENDENCIES_PREFIX)/whichdll.sh |