diff options
author | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
---|---|---|
committer | Daniel Baumann <daniel.baumann@progress-linux.org> | 2024-04-07 18:45:59 +0000 |
commit | 19fcec84d8d7d21e796c7624e521b60d28ee21ed (patch) | |
tree | 42d26aa27d1e3f7c0b8bd3fd14e7d7082f5008dc /src/c-ares/Makefile.dj | |
parent | Initial commit. (diff) | |
download | ceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.tar.xz ceph-19fcec84d8d7d21e796c7624e521b60d28ee21ed.zip |
Adding upstream version 16.2.11+ds.upstream/16.2.11+dsupstream
Signed-off-by: Daniel Baumann <daniel.baumann@progress-linux.org>
Diffstat (limited to 'src/c-ares/Makefile.dj')
-rw-r--r-- | src/c-ares/Makefile.dj | 85 |
1 files changed, 85 insertions, 0 deletions
diff --git a/src/c-ares/Makefile.dj b/src/c-ares/Makefile.dj new file mode 100644 index 000000000..f891f7fed --- /dev/null +++ b/src/c-ares/Makefile.dj @@ -0,0 +1,85 @@ +# +# c-ares Makefile for djgpp/gcc/Watt-32. +# By Gisle Vanem <gvanem@yahoo.no> 2004. +# + + +TOPDIR = .. + +DEPEND_PREREQ = ares_config.h + +include ../packages/DOS/common.dj +include Makefile.inc + +CFLAGS += -DWATT32 -Dselect=select_s + +LDFLAGS = -s + +ifeq ($(USE_CURLDEBUG),1) + EX_LIBS = ../lib/libcurl.a + OBJ_HACK = $(OBJECTS) +else + OBJ_HACK = libcares.a +endif + +ifeq ($(USE_SSL),1) + EX_LIBS += $(OPENSSL_ROOT)/lib/libssl.a $(OPENSSL_ROOT)/lib/libcrypt.a +endif + +ifeq ($(USE_ZLIB),1) + EX_LIBS += $(ZLIB_ROOT)/libz.a +endif + +ifeq ($(USE_IDNA),1) + EX_LIBS += $(LIBIDN_ROOT)/lib/dj_obj/libidn.a -liconv +endif + +EX_LIBS += $(WATT32_ROOT)/lib/libwatt.a + +OBJECTS = $(addprefix $(OBJ_DIR)/, $(CSOURCES:.c=.o)) + +all: $(OBJ_DIR) ares_config.h libcares.a ahost.exe adig.exe acountry.exe + @echo Welcome to c-ares. + +libcares.a: $(OBJECTS) + ar rs $@ $? + +ares_config.h: config-dos.h + $(COPY) $^ $@ + +ahost.exe: ahost.c $(OBJ_DIR)/ares_getopt.o $(OBJ_HACK) + $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $^ $(EX_LIBS) + +adig.exe: adig.c $(OBJ_DIR)/ares_getopt.o $(OBJ_HACK) + $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $^ $(EX_LIBS) + +acountry.exe: acountry.c $(OBJ_DIR)/ares_getopt.o $(OBJ_HACK) + $(CC) $(LDFLAGS) $(CFLAGS) -o $@ $^ $(EX_LIBS) + +# clean generated files +# +genclean: + - $(DELETE) ares_config.h + +# clean object files and subdir +# +objclean: genclean + - $(DELETE) $(OBJ_DIR)$(DS)*.o + - $(RMDIR) $(OBJ_DIR) + +# clean without removing built library and programs +# +clean: objclean + - $(DELETE) depend.dj + +# clean everything +# +realclean vclean: clean + - $(DELETE) libcares.a + - $(DELETE) acountry.exe + - $(DELETE) adig.exe + - $(DELETE) ahost.exe + - $(DELETE) libcares.a + +-include depend.dj + |