Commit 0a468c868910a2308612b6f6b86f6c29ff61ba95

Authored by Alexandre Barbosa
1 parent 0b05835b
Exists in master

Fixing Makefile

- Handling tarball remove command
- Installing only colab_spb_theme directory

Signed-off-by: Alexandre Barbosa <alexandreab@live.com>
Signed-off-by: Paulo Tada <paulohtfs@gmail.com>
Showing 1 changed file with 2 additions and 2 deletions   Show diff stats
@@ -12,11 +12,11 @@ dist: clean @@ -12,11 +12,11 @@ dist: clean
12 mkdir $(DISTDIR) 12 mkdir $(DISTDIR)
13 tar --exclude=.git --exclude=$(DISTDIR) -cf - * | (cd $(DISTDIR) && tar xaf -) 13 tar --exclude=.git --exclude=$(DISTDIR) -cf - * | (cd $(DISTDIR) && tar xaf -)
14 tar --exclude=.git -caf $(TARBALL) $(DISTDIR) 14 tar --exclude=.git -caf $(TARBALL) $(DISTDIR)
15 - rm ~/rpmbuild/SOURCES/$(TARBALL) && cp $(TARBALL) ~/rpmbuild/SOURCES/ 15 + rm -f ~/rpmbuild/SOURCES/$(TARBALL) && cp $(TARBALL) ~/rpmbuild/SOURCES/
16 clean: 16 clean:
17 $(RM) $(TARBALL) 17 $(RM) $(TARBALL)
18 $(RM) -r $(DISTDIR) 18 $(RM) -r $(DISTDIR)
19 19
20 install: 20 install:
21 install -d -m 0755 $(DESTDIR)/$(colab_dir)/colab-spb-theme 21 install -d -m 0755 $(DESTDIR)/$(colab_dir)/colab-spb-theme
22 - cp -vr . $(DESTDIR)/$(colab_dir)/colab-spb-theme 22 + cp -vr colab_spb_theme $(DESTDIR)/$(colab_dir)/colab-spb-theme