ref: 272bc8e3488ce5c7220ebf7cc731a04211b6dba4
parent: 634508e69362fc2404b0134f237019f71cb00101
author: Quentin Rameau <quinq@fifth.space>
date: Sun Dec 23 11:35:45 EST 2018
[Makefile] Remove [un]install targets for now We will reinstate them when scc is more stable
--- a/Makefile
+++ b/Makefile
@@ -27,19 +27,3 @@
+@cd include/scc/scc && $(MAKE) distclean
tests: all
-
-install: all
- mkdir -p $(DESTDIR)$(PREFIX)/
- cp -r root/* $(DESTDIR)$(PREFIX)/
- cd $(DESTDIR)$(PREFIX)/libexec/scc/ && chmod 755 cc*
- cd $(DESTDIR)$(PREFIX)/bin && chmod 755 scc scpp
- mkdir -p $(DESTDIR)$(MANPREFIX)/man1
- sed "s/VERSION/$(VERSION)/g" < doc/scc.1 > $(DESTDIR)$(MANPREFIX)/man1/scc.1
- chmod 644 $(DESTDIR)$(MANPREFIX)/man1/scc.1
-
-uninstall:
- rm -rf $(DESTDIR)$(PREFIX)/libexec/scc/
- rm -rf $(DESTDIR)$(PREFIX)/lib/scc/
- rm -f $(DESTDIR)$(PREFIX)/bin/scc
- rm -f $(DESTDIR)$(PREFIX)/bin/scpp
- rm -f $(DESTDIR)$(MANPREFIX)/man1/scc.1