23 lines
220 B
Makefile
23 lines
220 B
Makefile
##
|
|
# Chibi-RSS
|
|
#
|
|
# @file
|
|
# @version 0.1
|
|
|
|
SRC = chibirss.nim
|
|
BIN = chibirss
|
|
|
|
debug:
|
|
nimble build '-d:ssl --cc:clang'
|
|
|
|
release:
|
|
nimble build '-d:ssl --cc:clang -d:release'
|
|
|
|
clean:
|
|
rm -f ./${BIN}
|
|
|
|
run:
|
|
./${BIN}
|
|
|
|
|
|
# end
|