fixed problems

This commit is contained in:
tkmxqrdxddd
2024-10-19 15:57:57 +02:00
parent ba28ea0c9b
commit b4c0399399
3 changed files with 82 additions and 46 deletions

View File

@@ -3,25 +3,25 @@
# 'make clean' removes all .o and executable files
#
# define the Cpp compiler to use
# Define the C++ compiler to use
CXX = g++
# define any compile-time flags
# Define any compile-time flags
CXXFLAGS = -std=c++17 -Wall -Wextra -g
# define output directory
# Define output directory
OUTPUT = output
# define source directory
# Define source directory
SRC = src
# define the main executable name
# Define the main executable name
MAIN = davinci-convert
# define the C source files
# Define the C source files
SOURCES = $(wildcard $(SRC)/*.cpp)
# define the C object files
# Define the C object files
OBJECTS = $(SOURCES:.cpp=.o)
OUTPUTMAIN = $(OUTPUT)/$(MAIN)