Some bits here and there...

This commit is contained in:
2016-08-10 01:08:56 +03:00
parent 0c4a57faed
commit 65b923cba8
7 changed files with 26 additions and 16 deletions

View File

@@ -27,6 +27,10 @@ $(EXECUTABLE): $(OBJECTS)
@echo ' CC $@'
@$(CC) $(CCFLAGS) -c $< -o $@
debug: CCFLAGS = -O0 -g -Q
debug: $(SOURCES) $(EXECUTABLE)
@echo ' Compiling debug with $(CCFLAGS)'
clean:
rm -rf $(OBJECTS) $(EXECUTABLE)