This commit is contained in:
neza 2023-03-13 17:22:07 +03:00
parent f5499b4348
commit b8cb5a71b5
2 changed files with 6 additions and 6 deletions

4
.gitignore vendored
View File

@ -1,7 +1,7 @@
*~
.*~
.*.swp
src/.*~
src/*~
*.o
guess
Session.vim
Trash/

View File

@ -15,13 +15,13 @@ $(TARGET) : $(OBJ)
%.o : %.s
as $(FLAG) -o $@ $<
.PHONY : clean, echo, ready
.PHONY : clean, cleanup, ready
clean :
rm -f $(TARGET) *~ src/*.o src/*~
rm -f $(TARGET) src/*.o
echo :
echo $(T)
clenup :
rm -f $(TARGET) *~ .*~ src/*.o src/*~ src/.*~
ready :
strip $(TARGET)