diff options
author | Přemysl Janouch <p.janouch@gmail.com> | 2014-09-14 00:13:50 +0200 |
---|---|---|
committer | Přemysl Janouch <p.janouch@gmail.com> | 2014-09-14 00:28:50 +0200 |
commit | 215891a8ee5e47319d465866cb6ec28eb2768984 (patch) | |
tree | 97f5a0b1c32eb44c717fd9ef6800d2653eb86bcf /Makefile | |
parent | 1bc2e2216735257e745bcb54a37ebbce2cca0ca5 (diff) | |
download | ponymap-215891a8ee5e47319d465866cb6ec28eb2768984.tar.gz ponymap-215891a8ee5e47319d465866cb6ec28eb2768984.tar.xz ponymap-215891a8ee5e47319d465866cb6ec28eb2768984.zip |
More stuff
- renamed *_func to *_fn
- some initial code for the indicator (needs curses)
- moved option handler to utils
- more work on unit generation & processing
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -4,7 +4,7 @@ CC = clang CFLAGS = -std=c99 -Wall -Wextra -Wno-unused-function -ggdb # -lpthread is only there for debugging (gdb & errno) # -lrt is only for glibc < 2.17 -LDFLAGS = `pkg-config --libs libssl` -lpthread -lrt -ldl +LDFLAGS = `pkg-config --libs libssl` -lpthread -lrt -ldl -lcurses .PHONY: all clean .SUFFIXES: |