# mhddfs - Multi HDD [FUSE] File System # Copyright (C) 2008 Dmitry E. Oboukhov # This program is free software: you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by # the Free Software Foundation, either version 3 of the License, or # (at your option) any later version. # This program is distributed in the hope that it will be useful, # but WITHOUT ANY WARRANTY; without even the implied warranty of # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the # GNU General Public License for more details. # You should have received a copy of the GNU General Public License # along with this program. If not, see . SRC = $(wildcard src/*.c) OBJ = $(SRC:src/%.c=obj/%.o) DEPS = $(OBJ:obj/%.o=obj/%.d) TARGET = mhddfs CFLAGS = -Wall $(shell pkg-config fuse --cflags) -DFUSE_USE_VERSION=26 -MMD LDFLAGS = $(shell pkg-config fuse --libs) FORTAR = src COPYING LICENSE README Makefile README.ru.UTF-8 ChangeLog mhddfs.1 VERSION = $(shell cat src/version.h \ |grep '^.define'|grep '[[:space:]]VERSION[[:space:]]' \ |awk '{print $$3}'|sed 's/\"//g' ) all: $(TARGET) tarball: mhddfs_$(VERSION).tar.gz @echo '>>>> mhddfs_$(VERSION).tar.gz created' mhddfs_$(VERSION).tar.gz: $(FORTAR) $(wildcard src/*) mkdir mhddfs-$(VERSION) cp -r $(FORTAR) mhddfs-$(VERSION) tar --exclude=.svn -czvf $@ mhddfs-$(VERSION) rm -fr mhddfs-$(VERSION) $(TARGET): obj/obj-stamp $(OBJ) gcc $(CFLAGS) $(LDFLAGS) $(OBJ) -o $@ obj/obj-stamp: mkdir -p obj touch $@ obj/%.o: src/%.c gcc $(CFLAGS) -c $< -o $@ clean: rm -fr obj $(TARGET) release_svn_thread: @echo current version $(VERSION) if ! svn ls http://svn.uvw.ru/mhddfs/tags| \ grep -q release_$(VERSION); then \ svn copy -m release-$(VERSION) \ http://svn.uvw.ru/mhddfs/trunk \ http://svn.uvw.ru/mhddfs/tags/release_$(VERSION); \ fi open_project: screen -t vim vim Makefile src/* README* ChangeLog mhddfs.1 .PHONY: all clean open_project tarball release_svn_thread include $(wildcard obj/*.d)