diff options
Diffstat (limited to 'Makefile.mingw')
| -rw-r--r-- | Makefile.mingw | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.mingw b/Makefile.mingw index 5da8fa5..0ebb4f6 100644 --- a/Makefile.mingw +++ b/Makefile.mingw @@ -4,7 +4,7 @@ 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/alfbutton.o out/alfcompat.o out/alf.o out/alfedit.o out/alflabel.o +out/widgetfactory.exe: out/widgetfactory.o out/alfbutton.o out/alfcompat.o out/alf.o out/alfdpiaware.o out/alfedit.o out/alflabel.o $(CXX) $(CFLAGS) -o $@ $^ $(LDFLAGS) out/alfbutton.o: alf/alfbutton.cpp alf/alf.h alf/alflist.h alf/alfpriv.h @@ -16,6 +16,9 @@ out/alfcompat.o: alf/alfcompat.cpp alf/alf.h alf/alflist.h alf/alfpriv.h out/alf.o: alf/alf.cpp alf/alf.h alf/alflist.h alf/alfpriv.h $(CXX) $(CFLAGS) -c -o $@ $< +out/alfdpiaware.o: alf/alfdpiaware.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 $@ $< |
