Ticket #23770: patch-Makefile.in.diff
File patch-Makefile.in.diff, 959 bytes (added by tomldavis@…, 15 years ago) |
---|
-
Makefile.in
old new 3 3 CFLAGS += -I. -fvisibility=hidden -DIGUANAIR_EXPORTS 4 4 LINKARGS = -Wl,-soname=$(LIBNAME),--version-script=$(srcdir)/ig.ver 5 5 ifeq ($(shell uname -s),Darwin) 6 LINKARGS = -Wl,-dylib_current_version,1.0.0,-dylib_compatibility_version,1.0.0 6 LINKARGS = -Wl,-dylib_current_version,1.0.0,-dylib_compatibility_version,1.0.0 \ 7 -install_name $(prefix)/$(LIBDIR)/$(LIBNAME) 7 8 endif 8 9 9 10 .PHONY: all drivers … … 19 20 igdaemon: daemon.o client-interface.o device-interface.o driver.o \ 20 21 list.o protocol-versions.o pipes.o dataPackets.o compat.o \ 21 22 support.c $(OSSUPPORT) 22 $(CC) -Wl,-export-dynamic$(CPPFLAGS) $(CFLAGS) -DSUPPORT_EXPORTS \23 $(CC) $(CPPFLAGS) $(CFLAGS) -DSUPPORT_EXPORTS \ 23 24 $(LDFLAGS) $^ -lpopt -lusb -lpthread -ldl $(LIBNAME) -o $@ 24 25 25 26 igclient: client.o list.o support.o compat.o