7 lines
79 B
Makefile
7 lines
79 B
Makefile
all: mep
|
|
|
|
mep: mep.c
|
|
gcc -g -ggdb -o mep mep.c -lwolfssl
|
|
|
|
clean:
|
|
rm -f mep
|