X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fvalerie%2FMakefile;h=c1a783b1507584f075923d28c0403c90b609f6d8;hb=2bd3c395eac9fb8b02f6b39786659c7d1481872d;hp=908c432f8f7a763afc5cc638340d3f419ca4e39b;hpb=661165812e3410fe2f6f49d7af882b36a0efcf82;p=melted diff --git a/src/valerie/Makefile b/src/valerie/Makefile index 908c432..c1a783b 100644 --- a/src/valerie/Makefile +++ b/src/valerie/Makefile @@ -1,5 +1,14 @@ +include ../../config.mak -AR = ar +ifneq ($(targetos), Darwin) +NAME = libvalerie$(LIBSUF) +TARGET = $(NAME).$(version) +SHFLAGS += -Wl,-soname,$(TARGET) +else +NAME = libvalerie$(LIBSUF) +TARGET = libvalerie.$(version)$(LIBSUF) +SHFLAGS += -install_name $(libdir)/$(TARGET) +endif OBJS = valerie.o \ valerie_notifier.o \ @@ -11,26 +20,46 @@ OBJS = valerie.o \ valerie_remote.o \ valerie_socket.o -SRCS := $(OBJS:.o=.c) +INCS = valerie.h \ + valerie_notifier.h \ + valerie_parser.h \ + valerie_remote.h \ + valerie_response.h \ + valerie_socket.h \ + valerie_status.h \ + valerie_tokeniser.h \ + valerie_util.h -CFLAGS=-Wall -g -D_FILE_OFFSET_BITS=64 -pthread +SRCS := $(OBJS:.o=.c) -LDFLAGS=-ldv -lpthread +CFLAGS += -I.. $(RDYNAMIC) +LDFLAGS += -L../framework -lmlt -lpthread -all: libvalerie.a +all: $(TARGET) -libvalerie.a: $(OBJS) - $(AR) rvu $@ $(OBJS) - ranlib $@ +$(TARGET): $(OBJS) + $(CC) $(SHFLAGS) -o $@ $(OBJS) $(LDFLAGS) + ln -sf $(TARGET) $(NAME) depend: $(SRCS) $(CC) -MM $(CFLAGS) $^ 1>.depend -dist-clean: clean +distclean: clean rm -f .depend clean: - rm -f $(OBJS) libvalerie.a + rm -f $(OBJS) $(TARGET) $(NAME) + +install: all + install -m 755 $(TARGET) $(DESTDIR)$(libdir) + ln -sf $(TARGET) $(DESTDIR)$(libdir)/$(NAME) + mkdir -p "$(DESTDIR)$(prefix)/include/mlt/valerie" + install -m 644 $(INCS) "$(DESTDIR)$(prefix)/include/mlt/valerie" + +uninstall: + rm -f "$(DESTDIR)$(libdir)/$(TARGET)" + rm -f "$(DESTDIR)$(libdir)/$(NAME)" + rm -rf "$(DESTDIR)$(prefix)/include/mlt/valerie" ifneq ($(wildcard .depend),) include .depend