Add vulkan resources

This commit is contained in:
2024-10-04 00:52:03 -05:00
parent 98929dd2c6
commit 9ccbc1b0fb
428 changed files with 139659 additions and 36 deletions

View File

@@ -1,32 +0,0 @@
CC=gcc
CXX=g++
CPPFLAGS=-g
SRC=$(shell find . -name *.cpp)
OBJ=$(SRC:%.cpp=%.o)
BIN= build/placeholderengine
.PHONY: all
all: $(BIN)
.PHONY: dep
dep:
sudo pacman -S $(CC)
.PHONY: info
info:
@echo "make: Build executable"
@echo "make dep: Make all required dependencies"
@echo "make debug: Make with Debug hooked in"
@echo "make clean: Clean all files"
$(BIN): $(OBJ)
mkdir -p build
$(CXX) $(CPPFLAGS) -o $(BIN) $(OBJ)
%.o: %.cpp
g++ -c $< -o $@
.PHONY: clean
clean:
rm -rf build