scc

simple C compiler
git clone git://git.2f30.org/scc
Log | Files | Refs | README | LICENSE

commit f51fe03699bee2b5a383448da34f811fc4f11c27
parent c24d1d19be49987c696d8330bb66e50cc4435240
Author: Quentin Rameau <quinq@fifth.space>
Date:   Fri, 25 Aug 2017 19:23:58 +0200

Makefile: do not process include/ yet

We should revert this commit once we're ready to deal with our libc.

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

diff --git a/Makefile b/Makefile @@ -36,12 +36,10 @@ tests: all install: all cp -r rootdir/* $(DESTDIR)/$(PREFIX)/ - find $(DESTDIR)/$(PREFIX)/include/scc/ -type f | xargs chmod 644 cd $(DESTDIR)/$(PREFIX)/libexec/scc/ && chmod 755 cc* && strip cc* cd $(DESTDIR)/$(PREFIX)/bin && chmod 755 scpp scc && strip scc uninstall: - rm -rf $(DESTDIR)/$(PREFIX)/include/scc/ rm -rf $(DESTDIR)/$(PREFIX)/libexec/scc/ rm -rf $(DESTDIR)/$(PREFIX)/lib/scc/ rm -f $(DESTDIR)/$(PREFIX)/bin/scc