| CARVIEW |
Select Language
HTTP/2 200
date: Sun, 12 Oct 2025 06:55:37 GMT
content-type: text/html; charset=UTF-8
server: cloudflare
x-frame-options: DENY
x-content-type-options: nosniff
x-xss-protection: 1;mode=block
vary: accept-encoding
cf-cache-status: DYNAMIC
content-encoding: gzip
set-cookie: _csrf-frontend=28167654c180dc32731dabf5013b63ada25b238bc70386249a7b9d4df9d76d5aa%3A2%3A%7Bi%3A0%3Bs%3A14%3A%22_csrf-frontend%22%3Bi%3A1%3Bs%3A32%3A%22HsynVBNd-Qwpa6GR0dISuRujRVQB1MSF%22%3B%7D; HttpOnly; Path=/
cf-ray: 98d4b14eda3f58e1-BLR
# Compiler and flagsCC = gccCXX = g++CFLAGS = -w -std=c++20CXXFLAGS = $( - Pastebin.com
Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- # Compiler and flags
- CC = gcc
- CXX = g++
- CFLAGS = -w -std=c++20
- CXXFLAGS = $(CFLAGS)
- # Find SDL3 packages using pkg-config
- PKGS = sdl3 sdl3-image sdl3-ttf libxml-2.0
- CFLAGS += $(shell pkg-config --cflags $(PKGS))
- CXXFLAGS += $(shell pkg-config --cflags $(PKGS))
- LIBS = $(shell pkg-config --libs $(PKGS))
- # Directories
- SRC_DIR = SDL3Test
- OBJ_DIR = obj
- BIN_DIR = bin
- # Find all source files
- SRCS = $(wildcard $(SRC_DIR)/*.c) $(wildcard $(SRC_DIR)/*.cpp)
- OBJS = $(patsubst $(SRC_DIR)/%.c,$(OBJ_DIR)/%.o,$(filter %.c,$(SRCS))) \
- $(patsubst $(SRC_DIR)/%.cpp,$(OBJ_DIR)/%.o,$(filter %.cpp,$(SRCS)))
- # Target executable name
- TARGET = $(BIN_DIR)/LairwareSDL3
- # Default target
- all: dirs $(TARGET)
- # Create necessary directories
- dirs:
- @mkdir -p $(OBJ_DIR) $(BIN_DIR)
- # Link object files
- $(TARGET): $(OBJS)
- $(CXX) -o $@ $^ $(LIBS)
- # Compile C source files
- $(OBJ_DIR)/%.o: $(SRC_DIR)/%.c
- $(CC) $(CFLAGS) -c $< -o $@
- # Compile C++ source files
- $(OBJ_DIR)/%.o: $(SRC_DIR)/%.cpp
- $(CXX) $(CXXFLAGS) -c $< -o $@
- # Clean up
- clean:
- rm -rf $(OBJ_DIR) $(BIN_DIR)
- # Run the application
- run: all
- $(TARGET)
- .PHONY: all dirs clean run
Advertisement
Add Comment
Please, Sign In to add comment
-
⭐✅ Swapzone Glitch ✅ Working ⭐⭐ L
JavaScript | 4 sec ago | 0.25 KB
-
✅ Make $2500 in 20 minutes⭐⭐⭐ H
JavaScript | 16 sec ago | 0.25 KB
-
📌 Swapzone +37% glitch ⭐ 5
JavaScript | 29 sec ago | 0.25 KB
-
✅⭐ Make huge profits on trading ⭐⭐ E
JavaScript | 42 sec ago | 0.25 KB
-
⭐✅ Marketplace Glitch ✅ Working ✅ NEVER SEEN...
JavaScript | 54 sec ago | 0.25 KB
-
⭐✅ Exploit 2500$ in 15 Minutes⭐⭐⭐ Y
JavaScript | 1 min ago | 0.25 KB
-
Free Crypto Method (NEVER SEEN BEFORE)⭐⭐ A
JavaScript | 1 min ago | 0.25 KB
-
⭐✅ Swapzone Glitch ✅ Working ⭐⭐ L
JavaScript | 1 min ago | 0.25 KB
We use cookies for various purposes including analytics. By continuing to use Pastebin, you agree to our use of cookies as described in the Cookies Policy. OK, I Understand