aboutsummaryrefslogtreecommitdiff
path: root/lib/makefile.dj
blob: c166fcb9f772a297d086307f03a966de0477f4e3 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
#
#  Adapted for djgpp2 / Watt-32 / DOS by
#  Gisle Vanem <giva@bgnett.no>
#
# $Id$

DEPEND_PREREQ = config.h
TOPDIR = ..

include ../packages/DOS/common.dj

# Makefile.inc provides the CSOURCES and HHEADERS defines
include Makefile.inc

OBJECTS := $(patsubst %.c,$(OBJ_DIR)/%.o,$(strip $(CSOURCES)))

CURL_LIB = libcurl.a

all: $(OBJ_DIR) config.h $(CURL_LIB)

$(CURL_LIB): $(OBJECTS)
	ar rs $@ $?

config.h: config.dos
	cp $^ $@

clean:
	- rm -f $(OBJECTS)

realclean vclean: clean
	- rm -f config.h depend.dj $(CURL_LIB)

-include depend.dj