scc

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

commit fbdc0acd427d4825fe76e24562f041fb2c94917a
parent 3743abafb82eb0327dd80bb56fafede839072fce
Author: Quentin Rameau <quinq@fifth.space>
Date:   Sun, 23 Dec 2018 10:02:16 +0100

[Makefile] use scpp instead of cpp in install target

Diffstat:
MMakefile | 2+-
1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/Makefile b/Makefile @@ -32,7 +32,7 @@ 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 cpp + 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