scc

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

commit bd985d9e0ba924bfb73ff0abb5004f1be04ffa34
parent 68fd23753b7c670097f9dbb0ada76ea59189157a
Author: Roberto E. Vargas Caballero <k0ga@shike2.com>
Date:   Tue, 28 Aug 2012 19:36:17 +0200

Fixed clean rule in Makefile

clean rule didn't erase the kcc binary, the most important task of the clean
target.

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

diff --git a/Makefile b/Makefile @@ -21,7 +21,7 @@ dep: $(OBJS:.o=.d) clean: rm -f $(OBJS) - rm -f cc + rm -f kcc distclean: clean rm -f *~