sourcemod/extensions/curl/curl-src/lib/makefile.dj

50 lines
888 B
Plaintext
Raw Normal View History

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