5 lines
88 B
Makefile
5 lines
88 B
Makefile
SRCS:=$(wildcard src/*.cpp)
|
|
CC=g++
|
|
|
|
kisalt: $(SRCS)
|
|
$(CC) -o $@ $^ -lcrypto -ljsoncpp
|