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