moved: tools to base directory

moved: Makefile to base directory
This commit is contained in:
2024-07-05 10:16:44 -04:00
parent eea910ae33
commit 6a160cf8e0
6 changed files with 2 additions and 2 deletions

View File

@ -11,10 +11,10 @@ CXX = g++ # compiler
CXXFLAGS = -std=c++20 -g -Wall -MMD -lncurses -O0 # compiler flags
MAKEFILE_NAME = ${firstword ${MAKEFILE_LIST}} # makefile name
SOURCES = $(wildcard *.cc) # source files (*.cc)
SOURCES = $(wildcard src/*.cc) # source files (*.cc)
OBJECTS = ${SOURCES:.cc=.o} # object files forming executable
DEPENDS = ${OBJECTS:.o=.d} # substitute ".o" with ".d"
EXEC = cc3k # executable name
EXEC = bin/cc3k # executable name
########## Targets ##########