diff options
author | Kaz Kylheku <kaz@kylheku.com> | 2019-02-26 08:19:26 -0800 |
---|---|---|
committer | Kaz Kylheku <kaz@kylheku.com> | 2019-02-26 08:19:26 -0800 |
commit | a712268af12b40874fe3fe142e14b329e42c20e2 (patch) | |
tree | 3dd9fa815d9a01dc990be732d4dacbd298ccb341 /Makefile | |
parent | d10f45d341838491de5771d0e903820eba6fdbdd (diff) | |
download | txr-a712268af12b40874fe3fe142e14b329e42c20e2.tar.gz txr-a712268af12b40874fe3fe142e14b329e42c20e2.tar.bz2 txr-a712268af12b40874fe3fe142e14b329e42c20e2.zip |
build: remove nonexistent config option.
* Makefile (dbg/%-win.o, opt/%-win.o): Don't pass
CONFIG_WIN_MAIN=1 preprocessor symbol; it's not referenced
anywhere, and never has been.
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
@@ -181,10 +181,10 @@ opt/%.o: %.S $(call COMPILE_C_WITH_DEPS,) dbg/%-win.o: $(top_srcdir)%.c - $(call COMPILE_C_WITH_DEPS,-DCONFIG_WIN_MAIN=1) + $(call COMPILE_C_WITH_DEPS,) opt/%-win.o: $(top_srcdir)%.c - $(call COMPILE_C_WITH_DEPS,-DCONFIG_WIN_MAIN=1 $(OPT_FLAGS)) + $(call COMPILE_C_WITH_DEPS, $(OPT_FLAGS)) win/%.res: $(top_srcdir)win/%.rc $(top_srcdir)win/%.ico $(call WINDRES) |