2003-12-19 03:03:35 -05:00
|
|
|
#
|
|
|
|
# Adapted for djgpp2 / Watt-32 / DOS by
|
|
|
|
# Gisle Vanem <giva@bgnett.no>
|
|
|
|
#
|
2006-08-29 12:35:11 -04:00
|
|
|
# $Id$
|
2003-12-19 03:03:35 -05:00
|
|
|
|
2004-12-17 07:28:04 -05:00
|
|
|
DEPEND_PREREQ = config.h
|
2007-02-27 10:24:32 -05:00
|
|
|
TOPDIR = ..
|
2003-12-19 03:03:35 -05:00
|
|
|
|
|
|
|
include ../packages/DOS/common.dj
|
|
|
|
|
2004-07-11 19:43:32 -04:00
|
|
|
# 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
|
|
|
|
|
2004-06-29 14:43:56 -04:00
|
|
|
all: $(OBJ_DIR) config.h $(CURL_LIB)
|
2003-12-19 03:03:35 -05:00
|
|
|
|
|
|
|
$(CURL_LIB): $(OBJECTS)
|
|
|
|
ar rs $@ $?
|
|
|
|
|
2006-08-29 12:35:11 -04:00
|
|
|
config.h: config.dos
|
2004-06-29 14:43:56 -04:00
|
|
|
cp $^ $@
|
2003-12-19 03:03:35 -05:00
|
|
|
|
|
|
|
clean:
|
2007-02-27 10:24:32 -05:00
|
|
|
- rm -f $(OBJECTS)
|
2003-12-19 03:03:35 -05:00
|
|
|
|
|
|
|
realclean vclean: clean
|
2007-02-27 10:24:32 -05:00
|
|
|
- rm -f config.h depend.dj $(CURL_LIB)
|
2003-12-19 03:03:35 -05:00
|
|
|
|
2007-02-27 10:24:32 -05:00
|
|
|
-include depend.dj
|
2003-12-19 03:03:35 -05:00
|
|
|
|