diff options
| author | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2018-12-27 17:06:56 +0100 |
|---|---|---|
| committer | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2018-12-27 17:06:56 +0100 |
| commit | 88393dcbc2cfad14c8201959a6f97e64dafb4471 (patch) | |
| tree | 4eeabb9674b1581e7b0592f76a2cf9341050a548 /Makefile.vc6 | |
| parent | 6f4b47c3d5ddb1eddbea1817d624443de1a4fbf9 (diff) | |
add win2k and VC6 (with PSDK2003) support
Diffstat (limited to 'Makefile.vc6')
| -rw-r--r-- | Makefile.vc6 | 13 |
1 files changed, 13 insertions, 0 deletions
diff --git a/Makefile.vc6 b/Makefile.vc6 new file mode 100644 index 0000000..b5d8940 --- /dev/null +++ b/Makefile.vc6 @@ -0,0 +1,13 @@ +CXX = cl.exe +CFLAGS = -O2 -GA -W3 -DUNICODE -D_UNICODE -D_WIN32=0x0500 -D_WIN32_WINNT=0x0500 -D_WIN32_IE=0x0500 -nologo +LDFLAGS = /link kernel32.lib user32.lib comctl32.lib shell32.lib gdi32.lib version.lib + +out/widgetfactory.exe: out/widgetfactory.obj out/alf.obj + $(CXX) $(CFLAGS) -Fe$@ $** $(LDFLAGS) + +out/alf.obj: alf/alf.cpp alf/alf.h + $(CXX) $(CFLAGS) -c -Fo$@ alf/alf.cpp + +out/widgetfactory.obj: widgetfactory.cpp alf/alf.h + $(CXX) $(CFLAGS) -c -Fo$@ widgetfactory.cpp + |
