diff options
author | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 01:50:44 +0100 |
---|---|---|
committer | Paul Oliver <contact@pauloliver.dev> | 2024-02-29 01:50:44 +0100 |
commit | b11c47df5cf8d2832227bfac00cb48da522010f2 (patch) | |
tree | 2a3ffa9c482e8c2278298a2ce0f226379e094feb /tsalis/Makefile | |
parent | d7a72d72abf7831fc4b4885be71f340314e45388 (diff) |
All executables now placed on ./bin/ directory.
Diffstat (limited to 'tsalis/Makefile')
-rw-r--r-- | tsalis/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/tsalis/Makefile b/tsalis/Makefile index c393350..5312c12 100644 --- a/tsalis/Makefile +++ b/tsalis/Makefile @@ -1,11 +1,11 @@ CC := gcc -BIN := bin/tsalis +BIN := ../bin/tsalis SOURCES := $(wildcard src/*.c) OBJECTS := $(patsubst src/%.c,build/%.o,$(SOURCES)) DEPS := $(patsubst %.o,%.d,$(OBJECTS)) -LFLAGS := -L ../lib -lsalis -lncurses +LFLAGS := -L ../bin -l:libsalis.so -lncurses # uncomment for debug # OFLAGS := -ggdb |