From: Karim Barkati Date: Tue, 17 Sep 2013 14:57:16 +0000 (+0200) Subject: Rename "architecture" directory into "lib". X-Git-Url: https://scm.cri.ensmp.fr/git/Faustine.git/commitdiff_plain/456ab1eb0f387a99d0bfdc5bb3c42c20d645b331?hp=509aeb980ddb8825bfbbb59f060bbca48918fac8 Rename "architecture" directory into "lib". --- diff --git a/Makefile b/Makefile index c8c0630..748378e 100644 --- a/Makefile +++ b/Makefile @@ -9,7 +9,7 @@ SINWAVE_DIR = $(EXAMPLES_DIR)/sinwave DESTDIR ?= PREFIX ?= /usr/local prefix := $(DESTDIR)$(PREFIX) -arch := $(wildcard architecture/*.*) +lib := $(wildcard lib/*.*) all: $(EXEC) @@ -51,7 +51,7 @@ install : mkdir -p $(prefix)/lib/faustine/ mkdir -p $(prefix)/bin/ install $(SRC_DIR)/faustine $(prefix)/bin/ - install -m 0644 $(arch) $(prefix)/lib/faustine/ + install -m 0644 $(lib) $(prefix)/lib/faustine/ uninstall : rm -rf $(prefix)/lib/faustine/ diff --git a/README.txt b/README.txt index 5441db1..9dbbd8c 100644 --- a/README.txt +++ b/README.txt @@ -25,13 +25,13 @@ Yann Orlarey, 2009: CONTENTS -------- - architecture/ library files in Faustine (fft.lib, morpho.lib...) benchmarks/ benchmark result files Changes.txt what's new with each release configure compilation configuration script examples/ vector examples (fft, image processing...) INSTALL.txt Faustine installation instructions interpreter/ Faustine's interpreter source code + lib/ library files in Faustine (fft.lib, morpho.lib...) LICENSE.txt license and copyright notice Makefile main Makefile to compile and install README.txt this file diff --git a/architecture/complex.lib b/lib/complex.lib similarity index 100% rename from architecture/complex.lib rename to lib/complex.lib diff --git a/architecture/fft.lib b/lib/fft.lib similarity index 100% rename from architecture/fft.lib rename to lib/fft.lib diff --git a/architecture/fft2d.lib b/lib/fft2d.lib similarity index 100% rename from architecture/fft2d.lib rename to lib/fft2d.lib diff --git a/architecture/morpho.lib b/lib/morpho.lib similarity index 100% rename from architecture/morpho.lib rename to lib/morpho.lib