diff options
-rw-r--r-- | .gitignore | 2 | ||||
-rw-r--r-- | Makefile | 20 | ||||
-rw-r--r-- | main.c | 29 |
3 files changed, 51 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..dfc21eb --- /dev/null +++ b/.gitignore @@ -0,0 +1,2 @@ +*.o +*.out
\ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..61be3b9 --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +CC=gcc +CFLAGS=-Wall -Wextra -Wpedantic -ggdb -fsanitize=address -std=c11 +LIBS=-lm -lraylib +OBJECTS=main.o +OUT=simulation.out +ARGS= + +%.o: %.c + $(CC) $(CFLAGS) -c $^ -o $@ $(LIBS) + +$(OUT): $(OBJECTS) + $(CC) $(CFLAGS) $^ -o $@ $(LIBS) + +.PHONY: +clean: + rm -rfv $(OUT) $(OBJECTS) + +.PHONY: run +run: $(OUT) + ./$^ $(ARGS) @@ -0,0 +1,29 @@ +/* main.c + * Created: 2023-09-02 + * Author: Aryadev Chavali + * Description: Entrypoint of program + */ + +#include <stdint.h> +#include <stdio.h> +#include <stdlib.h> + +#include <raylib.h> +#include <raymath.h> + +#define WIDTH 512 +#define HEIGHT 512 + +int main(void) +{ + InitWindow(WIDTH, HEIGHT, "Mandelbrot simulation"); + for (size_t ticks = 0; !WindowShouldClose(); ++ticks) + { + BeginDrawing(); + ClearBackground(BLACK); + DrawText("Hello, world!", 100, 100, 50, RAYWHITE); + EndDrawing(); + } + CloseWindow(); + return 0; +} |