Differences From Artifact [3c6086809b]:
- File
utils/ofdns/Makefile
— part of check-in
[79fe29dbf4]
at
2019-06-17 00:38:44
on branch trunk
— Remove underscores from library & framework names
This is more compatible with the various conventions used on various
systems. (user: js, size: 427) [annotate] [blame] [check-ins using]
To Artifact [c6c2ac1b61]:
- File utils/ofdns/Makefile — part of check-in [c1db390649] at 2020-03-23 00:35:42 on branch trunk — ofdns: Add German translation (user: js, size: 529) [annotate] [blame] [check-ins using] [more...]
1 2 3 4 5 6 7 8 9 10 11 12 13 14 |
include ../../extra.mk
PROG = ofdns${PROG_SUFFIX}
SRCS = OFDNS.m
include ../../buildsys.mk
PACKAGE_NAME = ofdns
${PROG}: ${LIBOBJFW_DEP_LVL2} ${LIBOBJFWRT_DEP_LVL2}
CPPFLAGS += -I../../src \
-I../../src/runtime \
-I../../src/exceptions \
| > > | > | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 |
include ../../extra.mk
PROG = ofdns${PROG_SUFFIX}
SRCS = OFDNS.m
DATA = lang/de.json \
lang/languages.json
include ../../buildsys.mk
PACKAGE_NAME = ofdns
${PROG}: ${LIBOBJFW_DEP_LVL2} ${LIBOBJFWRT_DEP_LVL2}
CPPFLAGS += -I../../src \
-I../../src/runtime \
-I../../src/exceptions \
-I../.. \
-DLANGUAGE_DIR=\"${datadir}/ofdns/lang\"
LIBS := -L../../src -lobjfw \
-L../../src/runtime -L../../src/runtime/linklib ${RUNTIME_LIBS} \
${LIBS}
LD = ${OBJC}
LDFLAGS += ${LDFLAGS_RPATH}
|