mirror of
https://github.com/moparisthebest/mailiverse
synced 2024-11-06 09:25:01 -05:00
12 lines
203 B
Makefile
12 lines
203 B
Makefile
|
|
CC=g++
|
|
FLAGS=-g -Os -W -Wall -ansi
|
|
LDFLAGS=-L../.. -lbotan-1.9
|
|
CFLAGS=-I../../build/include
|
|
|
|
x509test: x509test.cpp
|
|
$(CC) $(FLAGS) $(CFLAGS) x509test.cpp $(LDFLAGS) -o x509test
|
|
|
|
clean:
|
|
rm -f x509test
|