Revert "Add vulkan resources"

This reverts commit 9ccbc1b0fb.
This commit is contained in:
2024-10-04 01:03:13 -05:00
parent 9ccbc1b0fb
commit eb66d83242
428 changed files with 36 additions and 139659 deletions

32
Makefile Normal file
View File

@@ -0,0 +1,32 @@
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