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