diff options
| author | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2018-12-27 20:50:39 +0100 |
|---|---|---|
| committer | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2018-12-27 20:50:39 +0100 |
| commit | b0b0e97aa5a06b22768bb9c9ea5e8caf383d78a4 (patch) | |
| tree | 8432ca1d8bf811bc7de6240e5988fb84e35b1f40 /Makefile.mingw | |
| parent | 64b6b40ace30693f0e12d56799abc40c997df07c (diff) | |
split into multiple files
Diffstat (limited to 'Makefile.mingw')
| -rw-r--r-- | Makefile.mingw | 19 |
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 + |
