Revert multiple source change commits for rebase.

This commit is contained in:
luckytyphlosion
2020-12-16 13:29:02 -05:00
parent aad94c3433
commit cc5db41f30
17 changed files with 121 additions and 196 deletions
+2 -8
View File
@@ -8,16 +8,10 @@ HEADERS := scaninc.h asm_file.h c_file.h source_file.h
.PHONY: all clean
ifeq ($(OS),Windows_NT)
EXE := .exe
else
EXE :=
endif
all: scaninc$(EXE)
all: scaninc
@:
scaninc$(EXE): $(SRCS) $(HEADERS)
scaninc: $(SRCS) $(HEADERS)
$(CXX) $(CXXFLAGS) $(SRCS) -o $@ $(LDFLAGS)
clean: