1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
include ../../extra.mk
PROG = ofhttp${PROG_SUFFIX}
SRCS = OFHTTP.m \
ProgressBar.m
DATA = lang/de.json \
lang/languages.json
include ../../buildsys.mk
PACKAGE_NAME = ofhttp
${PROG}: ${LIBOBJFW_DEP_LVL2}
CPPFLAGS += -I../../src \
-I../../src/runtime \
-I../../src/exceptions \
-I../.. \
-DLANGUAGE_DIR=\"${datadir}/ofhttp/lang\"
LIBS := -L../../src -lobjfw -L../../src/runtime ${RUNTIME_LIBS} ${LIBS}
|
|
|
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
include ../../extra.mk
PROG = ofhttp${PROG_SUFFIX}
SRCS = OFHTTP.m \
ProgressBar.m
DATA = lang/de.json \
lang/languages.json
include ../../buildsys.mk
PACKAGE_NAME = ofhttp
${PROG}: ${LIBOBJFW_DEP_LVL2} ${LIBOBJFW_RT_DEP_LVL2}
CPPFLAGS += -I../../src \
-I../../src/runtime \
-I../../src/exceptions \
-I../.. \
-DLANGUAGE_DIR=\"${datadir}/ofhttp/lang\"
LIBS := -L../../src -lobjfw -L../../src/runtime ${RUNTIME_LIBS} ${LIBS}
|