summaryrefslogtreecommitdiff
path: root/crypto/libressl/crypto/modes/Makefile
blob: aeba0424686d1dc509f8fd8541cd8a546b5561b4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
include ../../ssl_common.mk
CFLAGS += -D__BEGIN_HIDDEN_DECLS= -D__END_HIDDEN_DECLS=

obj = cbc128.o ccm128.o cfb128.o ctr128.o cts128.o gcm128.o ofb128.o xts128.o


all: $(obj)
dep: all

%.o: %.c
	$(CC) $(CFLAGS) -c $<

clean:
	rm -f *.o *.a