Skip to content

Commit

Permalink
make: bump version and move LDFLAGS before libraries
Browse files Browse the repository at this point in the history
  • Loading branch information
qwx9 committed Jan 24, 2025
1 parent 2b5c1a7 commit ee1003c
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Makefile
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROGRAM:= strangepg
VERSION:= 0.8.17
VERSION:= 0.8.18
DIRS:=

ifeq ($(wildcard .git),.git)
Expand Down Expand Up @@ -234,7 +234,7 @@ glsl/%.h: glsl/%.glsl
sokol-shdc -f sokol_impl -i $^ -l glsl430:hlsl5:metal_macos:glsl300es -o $@

$(BINTARGET): $(OBJ)
$(CC) $^ -o $@ $(LDLIBS) $(LDFLAGS)
$(CC) $^ -o $@ $(LDFLAGS) $(LDLIBS)

install: $(ALLTARGETS) dirinstall
test -d $(BINDIR) || install -d -m755 $(BINDIR)
Expand Down

0 comments on commit ee1003c

Please sign in to comment.