diff options
author | Freya Murphy <freya@freyacat.org> | 2023-12-17 11:10:04 -0500 |
---|---|---|
committer | Freya Murphy <freya@freyacat.org> | 2023-12-17 11:10:04 -0500 |
commit | e0eacfa9773c83850ed5169d1e889ff845180581 (patch) | |
tree | 9f8bb433404ce7e4dda1b86ca4dd5d5a2fba10e9 /Makefile | |
parent | snbt (diff) | |
download | nbtvis-main.tar.gz nbtvis-main.tar.bz2 nbtvis-main.zip |
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 |