summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
authorAndrew Guschin <saintruler@gmail.com>2021-09-12 20:21:28 +0400
committerAndrew Guschin <saintruler@gmail.com>2021-09-12 20:21:28 +0400
commit5438fe938f6a15f4eadcc0bb2fd09a02130aafb4 (patch)
treef05d70112e40c255c225cb29d0d08853df633ae2 /Makefile
parent259c4e23a136d2077c4083c4bbbad55a2a31bcef (diff)
Renamed most of structs and changed allocation strategy for storage
Diffstat (limited to 'Makefile')
-rw-r--r--Makefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/Makefile b/Makefile
index 74fcad5..90749f2 100644
--- a/Makefile
+++ b/Makefile
@@ -1,11 +1,11 @@
-CC=tcc
+CC=gcc
CFLAGS=-Wall -Wpedantic -ggdb -std=c99
INCLUDE_DIR=include
BUILD_DIR=build
PACKAGE_DIR=package
LIBS_DIR=libs
-LIBS=-lXi -ldl -lm
+LIBS=-ldl -lm
SOURCES := $(wildcard src/*.c)
OBJECTS := $(patsubst src/%.c,$(BUILD_DIR)/%.o,$(SOURCES))