about summary refs log tree commit diff stats
path: root/makefile
blob: 8c1e6cca4200720d62eec147d1ec7a38e856aaaf (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
NIMC = nim c
FLAGS = -d:ssl -o:twt
FILES = src/main.nim

debug:
	$(NIMC) $(FLAGS) $(FILES)
release:
	$(NIMC) $(FLAGS) -d:release -d:strip -d:lto $(FILES)
profile:
	$(NIMC) $(FLAGS) --profiler:on --stacktrace:on -d:profile $(FILES)
install:
	cp twt /usr/local/bin/
clean:
	rm ./twt