summaryrefslogtreecommitdiff
path: root/Makefile.mingw
blob: 8c29c5db7d8cb46df841ad92de56e2c6d94e11ed (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
# automatically created by makemakefile.sh. DO NOT EDIT!

CC = i686-w64-mingw32-gcc
CXX = i686-w64-mingw32-c++
CFLAGS = -std=c99 -Wall -Wextra -Wconversion -mwindows -municode -DUNICODE -D_UNICODE -gstabs
CXXFLAGS = -std=c++98 -Wall -Wextra -Wconversion -Wsign-conversion -mwindows -municode -DUNICODE -D_UNICODE -fno-exceptions -fno-rtti -gstabs
LDFLAGS = -luser32 -lcomctl32 -lshell32 -lversion -static

all: out/widgetfactory.exe out/alf/alf.c out/widgetfactory-c.exe

out/widgetfactory.exe: out/widgetfactory.o  out/alfbutton.o out/alfcombobox.o out/alfcompat.o out/alfcontrol.o out/alf.o out/alfdpiaware.o out/alfedit.o out/alfgroupbox.o out/alflabel.o out/alflayout.o out/alfnativebtn.o out/alfnotebook.o out/alfpanel.o out/alfwindow.o
	$(CXX) $(CXXFLAGS) -o $@ $^ $(LDFLAGS)

out/alfbutton.o: alf/alfbutton.cpp  alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
	$(CXX) $(CXXFLAGS) -c -o $@ $<

out/alfcombobox.o: alf/alfcombobox.cpp  alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
	$(CXX) $(CXXFLAGS) -c -o $@ $<

out/alfcompat.o: alf/alfcompat.cpp  alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
	$(CXX) $(CXXFLAGS) -c -o $@ $<

out/alfcontrol.o: alf/alfcontrol.cpp  alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
	$(CXX) $(CXXFLAGS) -c -o $@ $<

out/alf.o: alf/alf.cpp  alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
	$(CXX) $(CXXFLAGS) -c -o $@ $<

out/alfdpiaware.o: alf/alfdpiaware.cpp  alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
	$(CXX) $(CXXFLAGS) -c -o $@ $<

out/alfedit.o: alf/alfedit.cpp  alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
	$(CXX) $(CXXFLAGS) -c -o $@ $<

out/alfgroupbox.o: alf/alfgroupbox.cpp  alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
	$(CXX) $(CXXFLAGS) -c -o $@ $<

out/alflabel.o: alf/alflabel.cpp  alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
	$(CXX) $(CXXFLAGS) -c -o $@ $<

out/alflayout.o: alf/alflayout.cpp  alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
	$(CXX) $(CXXFLAGS) -c -o $@ $<

out/alfnativebtn.o: alf/alfnativebtn.cpp  alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
	$(CXX) $(CXXFLAGS) -c -o $@ $<

out/alfnotebook.o: alf/alfnotebook.cpp  alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
	$(CXX) $(CXXFLAGS) -c -o $@ $<

out/alfpanel.o: alf/alfpanel.cpp  alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
	$(CXX) $(CXXFLAGS) -c -o $@ $<

out/alfwindow.o: alf/alfwindow.cpp  alf/alfcompat.h alf/alf.h alf/alflayout.h alf/alflist.h alf/alfpriv.h
	$(CXX) $(CXXFLAGS) -c -o $@ $<

out/widgetfactory.o: widgetfactory.cpp alf/alf.h
	$(CXX) $(CXXFLAGS) -c -o $@ $<

out/alf/alf.c: alf/alflist.h alf/alflayout.h alf/alfcompat.h alf/alfpriv.h  alf/alfbutton.cpp alf/alfcombobox.cpp alf/alfcompat.cpp alf/alfcontrol.cpp alf/alf.cpp alf/alfdpiaware.cpp alf/alfedit.cpp alf/alfgroupbox.cpp alf/alflabel.cpp alf/alflayout.cpp alf/alfnativebtn.cpp alf/alfnotebook.cpp alf/alfpanel.cpp alf/alfwindow.cpp
	@mkdir -p out/alf
	@printf "#include \"alf.h\"\\n" > $@
	@cat $^ | grep -v "^#pragma once" | grep -v "^#include \"alf" >> $@

out/alf/alf.h: alf/alf.h
	@mkdir -p out/alf
	@cp $< $@

out/widgetfactory.c: widgetfactory.cpp
	@cp $< $@

out/widgetfactory-c.exe: out/widgetfactory.c out/alf/alf.h out/alf/alf.c
	$(CC) $(CFLAGS) -o $@ out/widgetfactory.c out/alf/alf.c $(LDFLAGS)

clean:
	rm -rf out/*.o out/*.exe out/*.c out/*.h out/alf