chore: add initial project scaffolding with gitignore, makefile, build scripts, and pgs source files

This commit is contained in:
2024-12-31 01:57:48 +00:00
commit e39d34f0f9
7 changed files with 508 additions and 0 deletions
+15
View File
@@ -0,0 +1,15 @@
CC=gcc
CFLAGS=-Wall -g
LDFLAGS=-lm
OBJS=pgs.o
TARGET=pgs
build:
$(CC) pgs.c $(CFLAGS) $(LDFLAGS) -o $(TARGET)
run: build
./$(TARGET)
clean:
rm -f $(OBJS) $(TARGET)