From 5438fe938f6a15f4eadcc0bb2fd09a02130aafb4 Mon Sep 17 00:00:00 2001 From: Andrew Guschin Date: Sun, 12 Sep 2021 20:21:28 +0400 Subject: Renamed most of structs and changed allocation strategy for storage --- Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'Makefile') 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)) -- cgit v1.2.3