mirror of
https://github.com/gnustep/libs-gsweb.git
synced 2025-02-23 19:51:13 +00:00
o fix for debug/non debug libraries
git-svn-id: svn+ssh://svn.gna.org/svn/gnustep/libs/gsweb/trunk@18197 72102866-910b-0410-8b05-ffd578937521
This commit is contained in:
parent
b50937ebcb
commit
5afb960662
2 changed files with 12 additions and 2 deletions
|
@ -62,7 +62,12 @@ ADDITIONAL_CFLAGS =
|
|||
ADDITIONAL_INCLUDE_DIRS = -I$(GNUSTEP_SYSTEM_ROOT)/db -I.. -I../.. -I../GSWeb.framework/derived_src
|
||||
|
||||
# Additional LDFLAGS to pass to the linker
|
||||
ADDITIONAL_LDFLAGS = -lGSANTLR
|
||||
ifeq ($(debug), yes)
|
||||
ADDITIONAL_LDFLAGS := $(ADDITIONAL_LDFLAGS) -lGSANTLR_d
|
||||
else
|
||||
ADDITIONAL_LDFLAGS := $(ADDITIONAL_LDFLAGS) -lGSANTLR
|
||||
endif
|
||||
|
||||
GSWExtensions_ADDITIONAL_LDFLAGS = GSWeb
|
||||
GSWExtensions_wo_ADDITIONAL_LDFLAGS = GSWeb_wo
|
||||
|
||||
|
|
|
@ -62,7 +62,12 @@ ADDITIONAL_CFLAGS =
|
|||
ADDITIONAL_INCLUDE_DIRS = -I$(GNUSTEP_SYSTEM_ROOT)/db -I../ -I../.. -I../GSWeb.framework/derived_src
|
||||
|
||||
# Additional LDFLAGS to pass to the linker
|
||||
ADDITIONAL_LDFLAGS = -lGSANTLR
|
||||
ifeq ($(debug), yes)
|
||||
ADDITIONAL_LDFLAGS := $(ADDITIONAL_LDFLAGS) -lGSANTLR_d
|
||||
else
|
||||
ADDITIONAL_LDFLAGS := $(ADDITIONAL_LDFLAGS) -lGSANTLR
|
||||
endif
|
||||
|
||||
GSWExtensionsGSW_ADDITIONAL_LDFLAGS = -lGSWeb
|
||||
GSWExtensionsGSW_wo_ADDITIONAL_LDFLAGS = -lGSWeb_wo
|
||||
|
||||
|
|
Loading…
Reference in a new issue