diff options
| -rw-r--r-- | .gitignore | 3 | ||||
| -rw-r--r-- | Makefile | 20 | ||||
| -rw-r--r-- | main.c | 26 | 
3 files changed, 49 insertions, 0 deletions
diff --git a/.gitignore b/.gitignore new file mode 100644 index 0000000..888dceb --- /dev/null +++ b/.gitignore @@ -0,0 +1,3 @@ +*.out +*.o +*.so
\ No newline at end of file diff --git a/Makefile b/Makefile new file mode 100644 index 0000000..5f13bd7 --- /dev/null +++ b/Makefile @@ -0,0 +1,20 @@ +CC=gcc +CFLAGS=-Wall -Wextra -pedantic -ggdb -fsanitize=address +LIBS=-lm -lraylib +OBJECTS=main.o +OUT=sandpile.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,26 @@ +/* main.c + * Created: 2023-08-25 + * Author: Aryadev Chavali + * Description: Entry point of program + */ +#include <stdio.h> + +#include <raylib.h> + +#define WIDTH  512 +#define HEIGHT 512 + +int main(void) +{ +  InitWindow(WIDTH, HEIGHT, "Abelian sand pile"); +  SetTargetFPS(60); +  while (!WindowShouldClose()) +  { +    BeginDrawing(); +    ClearBackground(BLACK); +    DrawText("Hello, world!", 100, 100, 25, RAYWHITE); +    EndDrawing(); +  } +  CloseWindow(); +  return 0; +}  | 
