diff options
author | June McEnroe <programble@gmail.com> | 2018-03-31 22:05:47 -0400 |
---|---|---|
committer | June McEnroe <programble@gmail.com> | 2018-03-31 22:05:47 -0400 |
commit | 5273386983f8579f8fe8ba2d54daaacb4cb0d0a4 (patch) | |
tree | a5e4778a53111e14084c7a607f9af30e6b7264c2 | |
parent | Miscellaneous code cleanup (diff) | |
download | torus-5273386983f8579f8fe8ba2d54daaacb4cb0d0a4.tar.gz torus-5273386983f8579f8fe8ba2d54daaacb4cb0d0a4.zip |
Link against ncurses
Diffstat (limited to '')
-rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/Makefile b/Makefile index 60f4cfe..6d39351 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,7 @@ USER = torus BINS = server client help meta merge CFLAGS += -Wall -Wextra -Wpedantic -LDLIBS = -lcurses +LDLIBS = -lncurses all: tags $(BINS) |