diff options
author | John Ankarström <john@ankarstrom.se> | 2022-02-14 23:17:44 +0100 |
---|---|---|
committer | John Ankarström <john@ankarstrom.se> | 2022-02-14 23:17:44 +0100 |
commit | dbf1e3bf11c74b93c42336000a42a73c7515d7a3 (patch) | |
tree | 2938e91dec1cf276eeb8c4084dcc27a77943b62a /Makefile | |
parent | f39d414332e15c6406951f7684ef4b5ada7e7414 (diff) | |
download | EpisodeBrowser-dbf1e3bf11c74b93c42336000a42a73c7515d7a3.tar.gz |
Stop command prompt from appearing.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 5 |
1 files changed, 2 insertions, 3 deletions
@@ -7,13 +7,12 @@ INPUTS += $(PROJECT_ROOT)local_episodes.pl INPUTS += $(PROJECT_ROOT)episode_data.pl CFLAGS += -DUNICODE -D_UNICODE -CFLAGS += -v -cc-options,-mwindows LDFLAGS += -lcomctl32 -lgdi32 -luxtheme ifeq ($(BUILD_MODE),debug) CFLAGS += -g else ifeq ($(BUILD_MODE),run) - CFLAGS += -O2 + CFLAGS += -O2 -ld-options,-mwindows else ifeq ($(BUILD_MODE),linuxtools) CFLAGS += -g -pg -fprofile-arcs -ftest-coverage LDFLAGS += -pg -fprofile-arcs -ftest-coverage @@ -26,7 +25,7 @@ endif all: episode_browser.exe episode_browser.exe: $(INPUTS) $(PROJECT_ROOT)Makefile - swipl-ld $(CFLAGS) $(LDFLAGS) -goal true -o $@ $(INPUTS) + swipl-ld -v $(CFLAGS) $(LDFLAGS) -goal true -o $@ $(INPUTS) $(EXTRA_CMDS) resource.obj: $(PROJECT_ROOT)resource.h $(PROJECT_ROOT)resource.rc |