about summary refs log tree commit diff stats
path: root/translate_mu_debug
Commit message (Expand)AuthorAgeFilesLines
* 6611 - start adding to common vocabulary in MuKartik Agaram2020-07-051-1/+1
* 6400Kartik Agaram2020-05-241-0/+8
l.com> 2021-01-22 12:54:21 +0100 committer bptato <nincsnevem662@gmail.com> 2021-01-22 12:54:21 +0100 failed attempt for unicode' href='/ahoang/chawan/commit/Makefile?id=5d6af7f57a89239554a9cd51fe60f8227d7ce549'>5d6af7f5 ^
8bbff1f7 ^
69a0f081 ^
0dc41727 ^
9b95435a ^

cac5382d ^

94d681b3 ^
97f19da3 ^
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) -d:debug $(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