wolfssl-examples/certfields/Makefile

12 lines
121 B
Makefile

CC=gcc
CFLAGS=-Wall
LIBS= -lwolfssl
app: main.o
$(CC) -o $@ $^ $(CFLAGS) $(LIBS)
.PHONY: clean
clean:
rm -f *.o app