1
0
mirror of https://github.com/brouhaha/dis6502.git synced 2024-06-01 03:41:31 +00:00

Improve 'make clean' and add .gitignore.

This commit is contained in:
Eric Smith 2018-01-23 11:09:43 -07:00
parent 6543495dda
commit f10b758886
2 changed files with 7 additions and 3 deletions

5
.gitignore vendored Normal file
View File

@ -0,0 +1,5 @@
*~
*.o
*.d
dis6502
lex.c

View File

@ -1,7 +1,6 @@
# dis6502 by Robert Bond, Udi Finkelstein, and Eric Smith # dis6502 by Robert Bond, Udi Finkelstein, and Eric Smith
# Makefile # Makefile
# $Id$ # Copyright 2000-2018 Eric Smith <spacwar@gmail.com>
# Copyright 2000-2003 Eric Smith
# #
# This program is free software; you can redistribute it and/or modify # 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 # it under the terms of the GNU General Public License version 2 as
@ -93,7 +92,7 @@ dist: $(DISTFILES)
clean: clean:
rm -f $(OBJS) $(AUTO_CSRCS) rm -f $(OBJS) $(AUTO_CSRCS) lex.c *.d
dis6502: $(OBJS) dis6502: $(OBJS)