scc

simple c99 compiler
git clone git://git.simple-cc.org/scc
Log | Files | Refs | Submodules | README | LICENSE

commit 48b33264a0393fa640f1341ee6f4658b12dbb867
parent cbe557371d55cd5984d837a090d38bd21e891fef
Author: Quentin Rameau <quinq@fifth.space>
Date:   Sun, 23 Dec 2018 16:35:45 +0100

[Makefile] Remove [un]install targets for now

We will reinstate them when scc is more stable

Diffstat:
MMakefile | 16----------------
1 file changed, 0 insertions(+), 16 deletions(-)

diff --git a/Makefile b/Makefile @@ -27,19 +27,3 @@ distclean: clean +@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