# # Adapted for djgpp2 / Watt-32 / DOS by # Gisle Vanem # # $Id$ DEPEND_PREREQ = config.h TOPDIR = .. include ../packages/DOS/common.dj # Makefile.inc provides the CSOURCES and HHEADERS defines include Makefile.inc OBJECTS := $(patsubst %.c,$(OBJ_DIR)/%.o,$(strip $(CSOURCES))) CURL_LIB = libcurl.a # NOTE: if ../include/curl/curlbuild.h is missing, you're probably building this # from a CVS checkout and then you need to run buildconf.bat first! all: $(OBJ_DIR) config.h $(CURL_LIB) $(CURL_LIB): $(OBJECTS) ar rs $@ $? config.h: config.dos cp $^ $@ clean: - rm -f $(OBJECTS) realclean vclean: clean - rm -f config.h depend.dj $(CURL_LIB) -include depend.dj