summaryrefslogtreecommitdiff
path: root/Makefile
diff options
context:
space:
mode:
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))