summaryrefslogtreecommitdiff
path: root/Makefile.mingw
diff options
context:
space:
mode:
authorJonas Kümmerlin <jonas@kuemmerlin.eu>2019-01-09 20:52:10 +0100
committerJonas Kümmerlin <jonas@kuemmerlin.eu>2019-01-09 20:52:10 +0100
commit9279dd93c3997a51b227d3380b4da659fcbdff96 (patch)
tree4b2b5880e5062a829e1c3018718b10154af54ebc /Makefile.mingw
parenteb706aae8bf5659a8aae37db31f88c3b605b8b1f (diff)
add spacer widget
Diffstat (limited to 'Makefile.mingw')
-rw-r--r--Makefile.mingw5
1 files changed, 4 insertions, 1 deletions
diff --git a/Makefile.mingw b/Makefile.mingw
index 60ef928..ce71482 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/alfcombobox.o out/alfcompat.o out/alf.o out/alfdpiaware.o out/alfedit.o out/alflabel.o out/alflayout.o out/alfpanel.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 out/alflayout.o out/alfpanel.o out/alfspacer.o
$(CXX) $(CFLAGS) -o $@ $^ $(LDFLAGS)
out/alfbutton.o: alf/alfbutton.cpp alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
@@ -34,6 +34,9 @@ out/alflayout.o: alf/alflayout.cpp alf/alfcompat.h alf/alf.h alf/alflayout.h al
out/alfpanel.o: alf/alfpanel.cpp alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
$(CXX) $(CFLAGS) -c -o $@ $<
+out/alfspacer.o: alf/alfspacer.cpp alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
+ $(CXX) $(CFLAGS) -c -o $@ $<
+
out/widgetfactory.o: widgetfactory.cpp alf/alf.h
$(CXX) $(CFLAGS) -c -o $@ $<