update executable name

This commit is contained in:
erysdren 2024-05-20 20:46:59 -05:00
parent bf7ebd4ba6
commit 5cd2a2e837
2 changed files with 3 additions and 2 deletions

1
.gitignore vendored
View file

@ -3,4 +3,5 @@
*.o
*.obj
sbe
small-bitmap-editor
untracked

View file

@ -1,6 +1,6 @@
ifeq ($(MINGW),1)
EXEC ?= sbe.exe
EXEC ?= small-bitmap-editor.exe
RM ?= rm -f
CC = x86_64-w64-mingw32-gcc
STRIP = x86_64-w64-mingw32-strip
@ -8,7 +8,7 @@ PKGCONFIG = x86_64-w64-mingw32-pkg-config
override LDFLAGS += -lcomdlg32 -lole32
else
EXEC ?= sbe
EXEC ?= small-bitmap-editor
RM ?= rm -f
CC ?= gcc
STRIP ?= strip