X-Git-Url: https://git.sur5r.net/?a=blobdiff_plain;f=Makefile;h=671e27a575c450e4ed9263a19262db7f7c65b786;hb=refs%2Ftags%2F2.7;hp=1ab8b42d1bb615f8a5f8b0bf9ce5ba8376096544;hpb=86e86adccae57acf7249583cdf94313fd242bb5a;p=i3%2Fi3status diff --git a/Makefile b/Makefile index 1ab8b42..671e27a 100644 --- a/Makefile +++ b/Makefile @@ -39,6 +39,13 @@ LDFLAGS+=-L/usr/local/lib/ LIBS+=-lossaudio endif +# This probably applies for any pkgsrc based system +ifeq ($(shell uname),DragonFly) +CFLAGS+=-I/usr/pkg/include/ +LDFLAGS+=-L/usr/pkg/lib/ +endif + + CFLAGS+=$(EXTRA_CFLAGS) # Fallback for libyajl 1 which did not include yajl_version.h. We need @@ -48,7 +55,7 @@ CFLAGS += -idirafter yajl-fallback OBJS:=$(wildcard src/*.c *.c) OBJS:=$(OBJS:.c=.o) -src/%.o: src/%.c +src/%.o: src/%.c include/i3status.h @$(CC) $(CPPFLAGS) $(CFLAGS) -c -o $@ $< @echo " CC $<" @@ -66,7 +73,7 @@ clean: rm -f *.o src/*.o distclean: clean - rm -f i3status + rm -f i3status man/i3status.1 manpage: $(MAKE) -C man @@ -84,12 +91,14 @@ install: release: [ -f i3status-${VERSION} ] || rm -rf i3status-${VERSION} mkdir i3status-${VERSION} - find . -maxdepth 1 -type f \( -regex ".*\.\(c\|conf\|h\)" -or -name "Makefile" -or -name "LICENSE" \) -exec cp '{}' i3status-${VERSION} \; + find . -maxdepth 1 -type f \( -regex ".*\.\(c\|conf\|h\)" -or -name "Makefile" -or -name "LICENSE" -or -name "CHANGELOG" \) -exec cp '{}' i3status-${VERSION} \; mkdir i3status-${VERSION}/src mkdir i3status-${VERSION}/man find src -maxdepth 1 -type f \( -regex ".*\.\(c\|h\)" \) -exec cp '{}' i3status-${VERSION}/src \; find man -maxdepth 1 -type f \( -regex ".*\.\(1\|man\|conf\)" -or -name "Makefile" \) -exec cp '{}' i3status-${VERSION}/man \; cp -r include i3status-${VERSION} + cp -r yajl-fallback i3status-${VERSION} + cp -r contrib i3status-${VERSION} sed -e 's/^GIT_VERSION:=\(.*\)/GIT_VERSION=${GIT_VERSION}/g;s/^VERSION:=\(.*\)/VERSION=${VERSION}/g' Makefile > i3status-${VERSION}/Makefile tar cjf i3status-${VERSION}.tar.bz2 i3status-${VERSION} rm -rf i3status-${VERSION}