curl/lib/makefile.dj

38 lines
646 B
Plaintext
Raw Normal View History

2003-12-19 03:03:35 -05:00
#
# Adapted for djgpp2 / Watt-32 / DOS by
# Gisle Vanem <giva@bgnett.no>
#
# $Id$
2003-12-19 03:03:35 -05:00
2004-12-17 07:28:04 -05:00
DEPEND_PREREQ = config.h
TOPDIR = ..
2003-12-19 03:03:35 -05:00
include ../packages/DOS/common.dj
# Makefile.inc provides the CSOURCES and HHEADERS defines
include Makefile.inc
OBJECTS := $(patsubst %.c,$(OBJ_DIR)/%.o,$(strip $(CSOURCES)))
2003-12-19 03:03:35 -05:00
CURL_LIB = libcurl.a
all: $(OBJ_DIR) ../include/curl/curlbuild.h config.h $(CURL_LIB)
2003-12-19 03:03:35 -05:00
$(CURL_LIB): $(OBJECTS)
ar rs $@ $?
config.h: config.dos
2004-06-29 14:43:56 -04:00
cp $^ $@
2003-12-19 03:03:35 -05:00
../include/curl/curlbuild.h: ../include/curl/curlbuild.h.dist
cp $^ $@
2003-12-19 03:03:35 -05:00
clean:
- rm -f $(OBJECTS)
2003-12-19 03:03:35 -05:00
realclean vclean: clean
- rm -f config.h depend.dj $(CURL_LIB)
2003-12-19 03:03:35 -05:00
-include depend.dj
2003-12-19 03:03:35 -05:00