diff options
| author | Andrew Guschin <saintruler@gmail.com> | 2021-09-12 20:21:28 +0400 |
|---|---|---|
| committer | Andrew Guschin <saintruler@gmail.com> | 2021-09-12 20:21:28 +0400 |
| commit | 5438fe938f6a15f4eadcc0bb2fd09a02130aafb4 (patch) | |
| tree | f05d70112e40c255c225cb29d0d08853df633ae2 /Makefile | |
| parent | 259c4e23a136d2077c4083c4bbbad55a2a31bcef (diff) | |
Renamed most of structs and changed allocation strategy for storage
Diffstat (limited to 'Makefile')
| -rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -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)) |