curl/lib/makefile.dj

35 lines
545 B
Plaintext
Raw Normal View History

2003-12-19 09:03:35 +01:00
#
# Adapted for djgpp2 / Watt-32 / DOS by
# Gisle Vanem <giva@bgnett.no>
#
# $Id$
2003-12-19 09:03:35 +01:00
2004-12-17 13:28:04 +01:00
DEPEND_PREREQ = config.h
TOPDIR = ..
2003-12-19 09:03:35 +01: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 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 $@ $?
config.h: config.dos
2004-06-29 20:43:56 +02:00
cp $^ $@
2003-12-19 09:03:35 +01:00
clean:
- rm -f $(OBJECTS)
2003-12-19 09:03:35 +01:00
realclean vclean: clean
- rm -f config.h depend.dj $(CURL_LIB)
2003-12-19 09:03:35 +01:00
-include depend.dj
2003-12-19 09:03:35 +01:00