DIMA/trial1/makefile
atul.jha 351686119b UDS hash implemented
FW has seg fault
2020-05-19 15:57:27 +02:00

20 lines
281 B
Makefile

CC=gcc
IDIR=./include
LDIR=./lib
ODIR=./out
_DEPS = layer2.h layer1.h
DEPS = $(pathsbst %,(IDIR)/%,%(_DEPS))
CFLAGS= -I. -T$(IDIR)
.PHONY: all clean
all: main.c layer1.c
${CC} -o $(ODIR)/main2 main.c layer1.c layer2.c -lssl -lcrypto
clean:
rm -r $(ODIR)/*
rm -r ./keys/*