From f10b758886ed4e7dc1568477e308d474b4f0d8a4 Mon Sep 17 00:00:00 2001 From: Eric Smith Date: Tue, 23 Jan 2018 11:09:43 -0700 Subject: [PATCH] Improve 'make clean' and add .gitignore. --- .gitignore | 5 +++++ Makefile | 5 ++--- 2 files changed, 7 insertions(+), 3 deletions(-) create mode 100644 .gitignore diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..844b8af --- /dev/null +++ b/.gitignore @@ -0,0 +1,5 @@ +*~ +*.o +*.d +dis6502 +lex.c diff --git a/Makefile b/Makefile index a1db780..b41f094 100644 --- a/Makefile +++ b/Makefile @@ -1,7 +1,6 @@ # dis6502 by Robert Bond, Udi Finkelstein, and Eric Smith # Makefile -# $Id$ -# Copyright 2000-2003 Eric Smith +# Copyright 2000-2018 Eric Smith # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License version 2 as @@ -93,7 +92,7 @@ dist: $(DISTFILES) clean: - rm -f $(OBJS) $(AUTO_CSRCS) + rm -f $(OBJS) $(AUTO_CSRCS) lex.c *.d dis6502: $(OBJS)