diff options
| author | Tristan Riehs <tristan.riehs@inria.fr> | 2026-05-31 17:59:41 +0200 |
|---|---|---|
| committer | Tristan Riehs <tristan.riehs@inria.fr> | 2026-05-31 17:59:41 +0200 |
| commit | bfd5e0d8c321b48d45440af0a6ae9d8b93610ed3 (patch) | |
| tree | 8324ef9045bef18a3c2ab5ec783d6d80d0792c51 | |
| parent | e733ce7d74aee14fc6d97bc2119e0645bfb49906 (diff) | |
Re-order linking flags
| -rw-r--r-- | Makefile | 2 |
1 files changed, 1 insertions, 1 deletions
@@ -22,7 +22,7 @@ export __LIBS := $(shell pkg-config --libs sqlite3) -luconfig all: $(PROG) $(PROG): src/config.o src/input.o src/main.o src/system.o src/utils.o uconfig/libuconfig.a - $(CC) -o $@ $^ $(__LIBS) $(__LDFLAGS) $(LDFLAGS) $(LIBS) + $(CC) -o $@ $^ $(__LDFLAGS) $(__LIBS) $(LDFLAGS) $(LIBS) src/config.o: src/config.c src/config.h src/system.h src/utils.h src/input.o: src/input.c src/input.h |
