summaryrefslogtreecommitdiff
path: root/Makefile.vc6
diff options
context:
space:
mode:
authorJonas Kümmerlin <jonas@kuemmerlin.eu>2018-12-28 21:43:24 +0100
committerJonas Kümmerlin <jonas@kuemmerlin.eu>2018-12-28 21:43:24 +0100
commit774cbae7824e4410b5523762496c0ddb35da13d8 (patch)
tree2e5474c2d7ca78059616fd61a8401a1c61da2935 /Makefile.vc6
parent416fe35c67352dd23ad698d8f732545caee3d82d (diff)
create alfcompat.h header
Diffstat (limited to 'Makefile.vc6')
-rw-r--r--Makefile.vc612
1 files changed, 6 insertions, 6 deletions
diff --git a/Makefile.vc6 b/Makefile.vc6
index 6d48116..c007c6a 100644
--- a/Makefile.vc6
+++ b/Makefile.vc6
@@ -7,22 +7,22 @@ LDFLAGS = /link kernel32.lib user32.lib comctl32.lib shell32.lib gdi32.lib versi
out/widgetfactory.exe: out/widgetfactory.obj out/alfbutton.obj out/alfcompat.obj out/alf.obj out/alfdpiaware.obj out/alfedit.obj out/alflabel.obj
$(CXX) $(CFLAGS) -Fe$@ $** $(LDFLAGS)
-out/alfbutton.obj: alf/alfbutton.cpp alf/alf.h alf/alflist.h alf/alfpriv.h
+out/alfbutton.obj: alf/alfbutton.cpp alf/alfcompat.h alf/alf.h alf/alflist.h alf/alfpriv.h
$(CXX) $(CFLAGS) -c -Fo$@ alf/alfbutton.cpp
-out/alfcompat.obj: alf/alfcompat.cpp alf/alf.h alf/alflist.h alf/alfpriv.h
+out/alfcompat.obj: alf/alfcompat.cpp alf/alfcompat.h alf/alf.h alf/alflist.h alf/alfpriv.h
$(CXX) $(CFLAGS) -c -Fo$@ alf/alfcompat.cpp
-out/alf.obj: alf/alf.cpp alf/alf.h alf/alflist.h alf/alfpriv.h
+out/alf.obj: alf/alf.cpp alf/alfcompat.h alf/alf.h alf/alflist.h alf/alfpriv.h
$(CXX) $(CFLAGS) -c -Fo$@ alf/alf.cpp
-out/alfdpiaware.obj: alf/alfdpiaware.cpp alf/alf.h alf/alflist.h alf/alfpriv.h
+out/alfdpiaware.obj: alf/alfdpiaware.cpp alf/alfcompat.h alf/alf.h alf/alflist.h alf/alfpriv.h
$(CXX) $(CFLAGS) -c -Fo$@ alf/alfdpiaware.cpp
-out/alfedit.obj: alf/alfedit.cpp alf/alf.h alf/alflist.h alf/alfpriv.h
+out/alfedit.obj: alf/alfedit.cpp alf/alfcompat.h alf/alf.h alf/alflist.h alf/alfpriv.h
$(CXX) $(CFLAGS) -c -Fo$@ alf/alfedit.cpp
-out/alflabel.obj: alf/alflabel.cpp alf/alf.h alf/alflist.h alf/alfpriv.h
+out/alflabel.obj: alf/alflabel.cpp alf/alfcompat.h alf/alf.h alf/alflist.h alf/alfpriv.h
$(CXX) $(CFLAGS) -c -Fo$@ alf/alflabel.cpp
out/widgetfactory.obj: widgetfactory.cpp alf/alf.h