diff options
| author | Tristan Riehs <tristan.riehs@inria.fr> | 2026-02-08 12:04:51 +0100 |
|---|---|---|
| committer | Tristan Riehs <tristan.riehs@inria.fr> | 2026-02-08 12:04:51 +0100 |
| commit | 29700305ec9e66d5b481df277a03752139483d65 (patch) | |
| tree | 89245bfeaf985761d28071b116741c10e5c0cfd6 | |
| parent | 7e6a9dc817070ad2ca1f0ccf9f84dbdf966e1e00 (diff) | |
Reformat makefile
| -rw-r--r-- | Makefile | 12 |
1 files changed, 6 insertions, 6 deletions
@@ -1,14 +1,14 @@ -export FTAG_ROOT ?= $(shell pwd) -export PROG ?= ftag -export CFLAGS ?= -O0 -g3 -export LDFLAGS ?= -export LIBS ?= +export FTAG_ROOT ?= $(shell pwd)/ftag +export PROG ?= ftag +export CFLAGS ?= -O0 -g3 +export LDFLAGS ?= +export LIBS ?= export __CFLAGS := -std=c99 -Wall \ -DFTAG_ROOT=\"$(FTAG_ROOT)\" \ -D_POSIX_C_SOURCE=200809L \ $(shell pkg-config --cflags sqlite3) -export __LIBS := $(shell pkg-config --libs sqlite3) +export __LIBS := $(shell pkg-config --libs sqlite3) all: $(PROG) |
