X-Git-Url: http://research.m1stereo.tv/gitweb?a=blobdiff_plain;f=src%2Fhumperdink%2FMakefile;h=f974b0dbe6bab1eb6ed8bd1c48566daf93303e48;hb=ccb141370c67b8c328244dc8931692f5d3722266;hp=b8aba7ac43c506aee42477a1a4f10ce0c5323da0;hpb=0b288164cbeb9a3c98107d439d86844be13ba910;p=melted diff --git a/src/humperdink/Makefile b/src/humperdink/Makefile index b8aba7a..f974b0d 100644 --- a/src/humperdink/Makefile +++ b/src/humperdink/Makefile @@ -1,10 +1,12 @@ +include ../../config.mak + TARGET = humperdink OBJS = client.o \ io.o \ remote.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 -lvalerie @@ -29,6 +31,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