X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Falbino%2FMakefile;h=4ad38e487c54c988ee2ebe1852955b14393fed26;hb=e253fb0e1e231bcdc77bc37b05c7a9724dbe2bb1;hp=d294f577b8cb71d6612e9cee2134938bb235eb47;hpb=0b288164cbeb9a3c98107d439d86844be13ba910;p=melted diff --git a/src/albino/Makefile b/src/albino/Makefile index d294f57..4ad38e4 100644 --- a/src/albino/Makefile +++ b/src/albino/Makefile @@ -1,16 +1,13 @@ +include ../../config.mak + TARGET = albino OBJS = albino.o -CFLAGS = -O3 -I .. -Wall -g -D_FILE_OFFSET_BITS=64 -pthread -rdynamic +CFLAGS = -O4 -pipe -ffast-math -fomit-frame-pointer -I .. -Wall -g -D_FILE_OFFSET_BITS=64 -pthread -rdynamic LDFLAGS = -L ../valerie -L ../miracle -L ../framework -lmiracle -lmlt -lvalerie -ifeq ($(MLT_GPROF),true) -CFLAGS+=-p -LDFLAGS+=-p -endif - SRCS := $(OBJS:.o=.c) all: $(TARGET) @@ -27,6 +24,10 @@ dist-clean: clean clean: rm -f $(OBJS) $(TARGET) +install: all + install -d "$(bindir)" + install -c -s -m 755 $(TARGET) "$(bindir)" + ifneq ($(wildcard .depend),) include .depend endif