summaryrefslogtreecommitdiff
path: root/Makefile.mingw
diff options
context:
space:
mode:
Diffstat (limited to 'Makefile.mingw')
-rw-r--r--Makefile.mingw19
1 files changed, 17 insertions, 2 deletions
diff --git a/Makefile.mingw b/Makefile.mingw
index 3276c92..5da8fa5 100644
--- a/Makefile.mingw
+++ b/Makefile.mingw
@@ -1,11 +1,25 @@
+# automatically created by makemakefile.sh. DO NOT EDIT!
+
CXX = i686-w64-mingw32-c++
CFLAGS = -std=c++98 -Wall -Wextra -mwindows -municode -DUNICODE -D_UNICODE -fno-exceptions -fno-rtti -gstabs
LDFLAGS = -luser32 -lcomctl32 -lshell32 -lversion -static
-out/widgetfactory.exe: out/widgetfactory.o out/alf.o
+out/widgetfactory.exe: out/widgetfactory.o out/alfbutton.o out/alfcompat.o out/alf.o out/alfedit.o out/alflabel.o
$(CXX) $(CFLAGS) -o $@ $^ $(LDFLAGS)
-out/alf.o: alf/alf.cpp alf/alf.h
+out/alfbutton.o: alf/alfbutton.cpp alf/alf.h alf/alflist.h alf/alfpriv.h
+ $(CXX) $(CFLAGS) -c -o $@ $<
+
+out/alfcompat.o: alf/alfcompat.cpp alf/alf.h alf/alflist.h alf/alfpriv.h
+ $(CXX) $(CFLAGS) -c -o $@ $<
+
+out/alf.o: alf/alf.cpp alf/alf.h alf/alflist.h alf/alfpriv.h
+ $(CXX) $(CFLAGS) -c -o $@ $<
+
+out/alfedit.o: alf/alfedit.cpp alf/alf.h alf/alflist.h alf/alfpriv.h
+ $(CXX) $(CFLAGS) -c -o $@ $<
+
+out/alflabel.o: alf/alflabel.cpp alf/alf.h alf/alflist.h alf/alfpriv.h
$(CXX) $(CFLAGS) -c -o $@ $<
out/widgetfactory.o: widgetfactory.cpp alf/alf.h
@@ -13,3 +27,4 @@ out/widgetfactory.o: widgetfactory.cpp alf/alf.h
clean:
rm -f out/*.o out/*.exe
+