Fix building utils

This commit is contained in:
ROllerozxa 2026-06-19 00:31:59 +02:00
commit 303b9d2a2f
4 changed files with 4 additions and 4 deletions

View file

@ -1,7 +1,7 @@
BIN = ../bin
PRINCIPIA = ../..
PROGRAM = lvl-icon-extractor
SRCS := main.cc $(PRINCIPIA)/src/pkgman.cc $(PRINCIPIA)/src/rand.c
SRCS := main.cc $(PRINCIPIA)/src/pkgman.cc
CXX ?= g++
CXXFLAGS ?= -D_NO_TMS -O2 -ffunction-sections -fdata-sections

View file

@ -1,7 +1,7 @@
BIN = ../bin
PRINCIPIA = ../..
PROGRAM = lvlbuf-decompressor
SRCS := main.cc $(PRINCIPIA)/src/pkgman.cc $(PRINCIPIA)/src/rand.c
SRCS := main.cc $(PRINCIPIA)/src/pkgman.cc
CXX ?= g++
CXXFLAGS ?= -D_NO_TMS -O2 -ffunction-sections -fdata-sections

View file

@ -1,7 +1,7 @@
BIN = ../bin
PRINCIPIA = ../..
PROGRAM = lvledit
SRCS := main.cc $(PRINCIPIA)/src/pkgman.cc $(PRINCIPIA)/src/rand.c
SRCS := main.cc $(PRINCIPIA)/src/pkgman.cc
CXX ?= g++
CXXFLAGS ?= -D_NO_TMS -O2 -ffunction-sections -fdata-sections

View file

@ -1,7 +1,7 @@
BIN = ../bin
PRINCIPIA = ../..
PROGRAM = package-creator
SRCS := main.cc $(PRINCIPIA)/src/pkgman.cc $(PRINCIPIA)/src/rand.c
SRCS := main.cc $(PRINCIPIA)/src/pkgman.cc
# always static unless you do STATIC=0
STATIC ?= 1