summaryrefslogtreecommitdiff
path: root/crypto/libressl/Makefile
blob: 60d9ce6e97f35ed36c23743596354bf972049286 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
pwd := $(abspath $(dir $(firstword $(MAKEFILE_LIST))))
MAKEFLAGS += -I$(pwd)

include ssl_obj.mk

all:
	for i in $(subdirs); do \
		(cd $$i && $(MAKE)) || exit; \
	done

clean:
	for i in $(subdirs); do \
		(cd $$i && $(MAKE) clean) || exit; \
	done
	rm -f *.o *.a