Fix linking in OBS

Fixes #5.
This commit is contained in:
KottV
2022-03-16 09:11:07 +10:00
committed by Geoffrey D. Bennett
parent f0b3d3d01d
commit c7881dfae9

View File

@@ -57,7 +57,7 @@ $(DEPFILES):
include $(wildcard $(DEPFILES))
$(TARGET): $(OBJS)
cc ${LDFLAGS} -lm -o $(TARGET) $(OBJS)
cc -o $(TARGET) $(OBJS) ${LDFLAGS} -lm
ifeq ($(PREFIX),)
PREFIX := /usr/local