initial commit

This commit is contained in:
2026-06-28 08:43:04 -05:00
parent 67481beb44
commit f6125fa8f8
5 changed files with 2140 additions and 0 deletions

25
makefile Normal file
View File

@@ -0,0 +1,25 @@
# Compiler settings
CC = gcc
CFLAGS = -Wall -Wextra -std=c99 -I dependancies
# Linker settings
LDFLAGS = -L dependancies
# Standard Linux dependencies required by Raylib
LDLIBS = -lraylib -lGL -lm -lpthread -ldl -lrt -lX11 -lfann
# Project files
TARGET = creature_sim
SRC = main.c
# Default target
all: $(TARGET)
# Compile the executable
$(TARGET): $(SRC)
$(CC) $(CFLAGS) $(SRC) -o $(TARGET) $(LDFLAGS) $(LDLIBS)
# Clean up build files
clean:
rm -f $(TARGET)
.PHONY: all clean