# Default target
all: aaasvg_1.exe

# Link the object file to create the executable
aaasvg_1.exe: aaasvg_1.o
	g++ -o aaasvg_1.exe aaasvg_1.o

# Compile the source file into an object file
aaasvg_1.o: aaasvg_1.cpp
	g++ -c aaasvg_1.cpp

# Clean up build files
clean:
	rm -f aaasvg_1.o aaasvg_1.exe
