ObjFW  Diff

Differences From Artifact [013af67a80]:

To Artifact [b432a17b87]:


120
121
122
123
124
125
126



127






128
129

CPPFLAGS += -I../src				\
	    -I../src/exceptions			\
	    -I../src/runtime			\
	    -I../src/test			\
	    -I..				\
	    -DOBJFWTEST_LOCAL_INCLUDES



LIBS := -L../src/test -lobjfwtest ${TESTS_LIBS} ${LIBS}






LDFLAGS += ${MAP_LDFLAGS}
LD = ${OBJC}







>
>
>
|
>
>
>
>
>
>


120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138

CPPFLAGS += -I../src				\
	    -I../src/exceptions			\
	    -I../src/runtime			\
	    -I../src/test			\
	    -I..				\
	    -DOBJFWTEST_LOCAL_INCLUDES
# Repetition is required for Wii U, as otherwise it cannot find main. Just
# moving -lobjfwtest later doesn't work either, as then the linker cannot find
# ObjFW symbols. So the only solution is to list everything twice.
LIBS := -L../src/test	\
	-lobjfwtest	\
	${TESTS_LIBS}	\
	${LIBS}		\
	-lobjfwtest	\
	${TESTS_LIBS}	\
	${LIBS}
LDFLAGS += ${MAP_LDFLAGS}
LD = ${OBJC}