diff options
| author | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2019-01-01 22:12:51 +0100 |
|---|---|---|
| committer | Jonas Kümmerlin <jonas@kuemmerlin.eu> | 2019-01-01 22:12:51 +0100 |
| commit | 261902fcae887249ffa03114e49afdef85fb4442 (patch) | |
| tree | fbc81a4581dc762d7194f7ee5b9b7b2790319dbf /Makefile.mingw | |
| parent | dbd2fb78dec385f0abfe07fd4609dc8f444bdefd (diff) | |
first try at combobox implementation
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 796496a..4bc45ce 100644 --- a/Makefile.mingw +++ b/Makefile.mingw @@ -4,12 +4,15 @@ 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 -lrpcrt4 -lversion -static -out/widgetfactory.exe: out/widgetfactory.o out/alfbutton.o out/alfcompat.o out/alf.o out/alfdpiaware.o out/alfedit.o out/alflabel.o +out/widgetfactory.exe: out/widgetfactory.o out/alfbutton.o out/alfcombobox.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/alfcompat.h alf/alf.h alf/alflist.h alf/alfpriv.h $(CXX) $(CFLAGS) -c -o $@ $< +out/alfcombobox.o: alf/alfcombobox.cpp alf/alfcompat.h alf/alf.h alf/alflist.h alf/alfpriv.h + $(CXX) $(CFLAGS) -c -o $@ $< + out/alfcompat.o: alf/alfcompat.cpp alf/alfcompat.h alf/alf.h alf/alflist.h alf/alfpriv.h $(CXX) $(CFLAGS) -c -o $@ $< |
