Skip to content

Commit b9ee1ef

Browse files
committed
RM .main.cpp.swp; make calls make version
1 parent 5f0786d commit b9ee1ef

File tree

4 files changed

+7
-4
lines changed

4 files changed

+7
-4
lines changed

.gitignore

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,6 +7,7 @@
77
# Precompiled Headers
88
*.gch
99
*.pch
10+
version.h
1011

1112
# Libraries
1213
*.lib
@@ -39,6 +40,9 @@ SPASM_i.c
3940
SPASM_i.h
4041
SPASM_h.h
4142

43+
# Temporary files
44+
.*.swp
45+
4246
#######################################################################
4347
# Visual Studio .gitignore
4448
#######################################################################
@@ -276,4 +280,4 @@ _Pvt_Extensions
276280
.paket/paket.exe
277281

278282
# FAKE - F# Make
279-
.fake/
283+
.fake/

.main.cpp.swp

-24 KB
Binary file not shown.

Makefile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -40,7 +40,7 @@ OBJ = $(addsuffix .o, $(basename $(SRC)))
4040
OBJ_FILES = $(addsuffix .o, $(basename $(notdir $(SRC))))
4141
EXE = $(if $(ISWIN),spasm.exe,spasm)
4242

43-
$(EXE): $(OBJ) Makefile
43+
$(EXE): version $(OBJ) Makefile
4444
$(CC) -o $@ $(OBJ_FILES) $(LDFLAGS)
4545
$(STRIP) $@
4646

@@ -93,7 +93,7 @@ coverage: clean check
9393
clean:
9494
rm -f $(OBJ) $(EXE) description-pak spasm-ng*.deb spasm-ng*.tar.gz
9595
rm -f opt static prep-special-build
96-
rm -f *.gcno *.gcda *.gcov
96+
rm -f *.gcno *.gcda *.gcov version.h
9797

9898
version:
9999
@./version.sh set

version.h

Lines changed: 0 additions & 1 deletion
This file was deleted.

0 commit comments

Comments
 (0)