wix-on-linux/Makefile.wixfakelibs
Simon Tatham 6824aa549c Start of a fake msi.dll.
This seems to be the next function WiX expects from its native-code
DLLs. So far it's just a stub.
2017-02-20 07:17:56 +00:00

19 lines
294 B
Makefile

# -*- makefile -*-
.SUFFIXES: .c .lo .la
all: libwinterop.so.la libmsi.so.la
%.la:
libtool --mode=link gcc -o $@ $^ -rpath /usr/local/lib
%.lo: %.c
libtool --mode=compile gcc -c $^
libwinterop.so.la: fake-winterop.lo
libmsi.so.la: fake-msi.lo
clean:
rm -rf .libs
rm -f *.o *.lo *.la