about summary refs log tree commit diff stats
path: root/src/chrtrans
diff options
context:
space:
mode:
authorThomas E. Dickey <dickey@invisible-island.net>2018-02-20 00:44:42 +0000
committerThomas E. Dickey <dickey@invisible-island.net>2018-02-20 00:44:42 +0000
commitf498a252d549aec6eb894a6355c451f52e2eb632 (patch)
treeb4f5335aebd2e86f321b5cd57dc38fdb93af6ebd /src/chrtrans
parent9194f6cf75175976385fb46cf5721b28f397f433 (diff)
downloadlynx-snapshots-f498a252d549aec6eb894a6355c451f52e2eb632.tar.gz
snapshot of project "lynx", label v2-8-9dev_16f
Diffstat (limited to 'src/chrtrans')
-rw-r--r--src/chrtrans/makefile.msc3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/chrtrans/makefile.msc b/src/chrtrans/makefile.msc
index 28b7435d..48d074ab 100644
--- a/src/chrtrans/makefile.msc
+++ b/src/chrtrans/makefile.msc
@@ -9,7 +9,8 @@ INCLUDES = /I "." /I ".." /I "..\.." /I "..\..\WWW\Library\Implementation" /I ".
 DEFS = /D "WIN32_LEAN_AND_MEAN" /D "NDEBUG" /D "__WIN32__" /D "WIN32" /D "_CONSOLE" /D "_MBCS" /D "_WIN32" /D "NO_FILEIO_H" /D "NO_UNISTD_H" /D "_WINDOWS" /D "DOSPATH"
 CFLAGS   = /nologo /MT /W3 /EHsc /O2 /c
 
-LDFLAGS  = /nologo /subsystem:console /incremental:no /machine:I386
+MACHINE  = i386
+LDFLAGS  = /nologo /subsystem:console /incremental:no /machine:$(MACHINE)
 LIBS     = user32.lib wsock32.lib
 
 COMPILE = $(CC) $(CFLAGS) $(INCLUDES) $(DEFS)