mirror of
https://github.com/brouhaha/dis6502.git
synced 2024-11-27 07:50:58 +00:00
Improve 'make clean' and add .gitignore.
This commit is contained in:
parent
6543495dda
commit
f10b758886
5
.gitignore
vendored
Normal file
5
.gitignore
vendored
Normal file
@ -0,0 +1,5 @@
|
||||
*~
|
||||
*.o
|
||||
*.d
|
||||
dis6502
|
||||
lex.c
|
5
Makefile
5
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 <spacwar@gmail.com>
|
||||
#
|
||||
# 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)
|
||||
|
Loading…
Reference in New Issue
Block a user