curl/lib/makefile.dj

50 lines
888 B
Plaintext
Raw Permalink Normal View History

2003-12-19 03:03:35 -05:00
#
# Adapted for djgpp2 / Watt-32 / DOS by
2011-04-13 23:27:40 -04:00
# Gisle Vanem <gvanem@broadpark.no>
2003-12-19 03:03:35 -05:00
#
DEPEND_PREREQ = curl_config.h
TOPDIR = ..
2003-12-19 03:03:35 -05:00
include ../packages/DOS/common.dj
include Makefile.inc
OBJECTS := $(patsubst %.c,$(OBJ_DIR)/%.o,$(strip $(CSOURCES)))
2003-12-19 03:03:35 -05:00
CURL_LIB = libcurl.a
# NOTE: if ../include/curl/curlbuild.h is missing, you're probably building
2010-03-24 05:44:25 -04:00
# this from a git checkout and then you need to run buildconf.bat first.
all: $(OBJ_DIR) curl_config.h $(CURL_LIB)
2003-12-19 03:03:35 -05:00
$(CURL_LIB): $(OBJECTS)
ar rs $@ $?
curl_config.h: config-dos.h
$(COPY) $^ $@
# clean generated files
#
genclean:
- $(DELETE) curl_config.h
2003-12-19 03:03:35 -05:00
# clean object files and subdir
#
objclean: genclean
- $(DELETE) $(OBJ_DIR)$(DS)*.o
- $(RMDIR) $(OBJ_DIR)
2003-12-19 03:03:35 -05:00
# clean without removing built library
#
clean: objclean
- $(DELETE) depend.dj
# clean everything
#
2003-12-19 03:03:35 -05:00
realclean vclean: clean
- $(DELETE) $(CURL_LIB)
2003-12-19 03:03:35 -05:00
-include depend.dj
2003-12-19 03:03:35 -05:00