lzma implementation
[swftools.git] / installer / Makefile
1 CC=/opt/xmingw/bin/i386-mingw32msvc-gcc -DWIN32
2 STRIP=/opt/xmingw/bin/i386-mingw32msvc-strip 
3 WINDRES=/opt/xmingw/bin/i386-mingw32msvc-windres
4
5 LICENSE=gpl.c
6
7 all: files1.exe files2.exe mkarchive
8
9 LIBS=-lgdi32 -lshlwapi -lcomctl32 -lshell32 -lole32 -luuid
10
11 files1.c: ../win32/*.exe mkarchive
12         CWD=`pwd`
13         cd ../win32;../installer/mkarchive `find`
14         mv ../win32/crnfiles.c ./files1.c
15
16 files2.c: ../win32_gui/*.exe ../win32_gui/*.swf mkarchive
17         CWD=`pwd`
18         cd ../win32_gui;../installer/mkarchive `find`
19         mv ../win32_gui/crnfiles.c ./files2.c
20
21 %.o: %.c
22         $(CC) -c $<
23
24 mkarchive: mkarchive.c
25         gcc mkarchive.c -o mkarchive -lz
26
27 crnfiles1.o: crnfiles1.c
28 crnfiles2.o: crnfiles2.c
29
30 #depack.o: depack.c depack.h Makefile
31 #       $(CC) -c depack.c -o depack.o
32
33 archive.o: archive.c archive.c
34         $(CC) -c archive.c -o archive.o
35
36 license.o: $(LICENSE)
37         $(CC) -c $< -o license.o
38
39 installer.o: installer.c installer.h archive.h ../lib/os.h
40         $(CC) -c installer.c -o installer.o
41
42 installer.coff: installer.rc swftools.ico installer.h
43         $(WINDRES) installer.rc -O coff -F pe-i386 -o installer.coff
44
45 lzma/LzmaDecode.o: lzma/LzmaDecode.c lzma/LzmaDecode.h lzma/LzmaTypes.h
46         $(CC) -c lzma/LzmaDecode.c -o lzma/LzmaDecode.o
47
48 %.exe: %.c installer.o license.o archive.o lzma/LzmaDecode.o installer.coff Makefile
49         $(CC) installer.o license.o archive.o lzma/LzmaDecode.o installer.coff $< -o $@ $(LIBS)
50         $(STRIP) $@
51         ./makegui $@
52         #upx -9 --best $@ 2>/dev/null || true
53
54 #installer.exe: installer.c depack.o archive.o depack.h crnfiles.o installer.coff Makefile
55 #       $(CC) installer.c depack.o archive.o crnfiles.o installer.coff -o installer.exe $(LIBS)
56 #       $(STRIP) installer.exe
57 #       #./makegui installer.exe
58 #       #upx -9 --best installer.exe 2>/dev/null || true
59
60 clean:
61         rm -f installer.exe files*exe crnfiles.c *.o *.coff