diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 6 |
1 files changed, 4 insertions, 2 deletions
@@ -2,10 +2,12 @@ BIN = bin OUT = $(BIN)/out INS = /usr/local/bin/nbtvis -SRC = $(shell find src -type f -name "*.c") +SRC = $(shell find src -type f -name "*.c") +SRC += $(shell find lib -type f -name "*.c") +SRC += $(shell find nbt -type f -name "*.c") OBJ = $(patsubst %.c,$(BIN)/%.o, $(SRC)) -CCFLAGS = -Isrc -std=c2x -Wall -Wextra -pedantic -O0 -g +CCFLAGS = -Isrc -Ilib -Inbt -std=c2x -Wall -Wextra -pedantic -O0 -g LDFLAGS = CC = gcc |