X-Git-Url: http://git.asbjorn.biz/?a=blobdiff_plain;f=installer%2FMakefile;h=de58c8397f5fa039cb6f8b231f91faa6aba3921b;hb=e3a5b541d90aab2cb0c42bc80dfa5eca2f917010;hp=e69de29bb2d1d6434b8b29ae775ad8c2e48c5391;hpb=fe1bb135fc2ad5be9269d6676d48d00bd6282f70;p=swftools.git diff --git a/installer/Makefile b/installer/Makefile index e69de29..de58c83 100644 --- a/installer/Makefile +++ b/installer/Makefile @@ -0,0 +1,18 @@ +CC=/opt/xmingw/bin/i386-mingw32msvc-gcc -DWIN32 + +all: installer.exe + +LIBS=-lgdi32 -lshlwapi + +crnfiles.o: crnfiles.c + $(CC) -c crnfiles.c + +depack.o: depack.c depack.h Makefile + $(CC) -c depack.c -o depack.o + +archive.o: archive.c archive.c depack.h + $(CC) -c archive.c -o archive.o + +installer.exe: installer.c depack.o archive.o depack.h crnfiles.o Makefile + $(CC) installer.c depack.o archive.o crnfiles.o -o installer.exe $(LIBS) +