diff options
author | Guenter Geiger <ggeiger@users.sourceforge.net> | 2005-07-01 08:13:35 +0000 |
---|---|---|
committer | Guenter Geiger <ggeiger@users.sourceforge.net> | 2005-07-01 08:13:35 +0000 |
commit | 76be9508936fa53fe661d378ee2fc41cc9baebf3 (patch) | |
tree | 27933c01469be0d3e2416e084d070e1c0f3d0d88 /makefile | |
parent | 13f37565a6ab504b98c17ac06ee49d01f9bf99f6 (diff) |
added
svn path=/trunk/externals/ggee/; revision=3276
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 26 |
1 files changed, 26 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..a348d07 --- /dev/null +++ b/makefile @@ -0,0 +1,26 @@ + + +VERSION=$(shell cat VERSION) + +compile: + make -f ../makefile.sub -C control + make -f ../makefile.sub -C filters + make -f ../makefile.sub -C gui + make -f ../makefile.sub -C signal + make -f ../makefile.sub -C experimental + +clean: + rm -r ggee-$(VERSION) + make -f ../makefile.sub -C control clean + make -f ../makefile.sub -C filters clean + make -f ../makefile.sub -C gui clean + make -f ../makefile.sub -C signal clean + make -f ../makefile.sub -C experimental clean + + +package: + -mkdir ggee-$(VERSION) + -cp `find . -name "*.pd_linux"` ggee-$(VERSION) + -cp `find . -name "*.pd_darwin"` ggee-$(VERSION) + -cp `find . -name "*.dll"` ggee-$(VERSION) + cp `find . -name "*help.pd"` ggee-$(VERSION) |