initial commit

Signed-off-by: Ian Moffett <ian@mirocom.org>
This commit is contained in:
2026-02-09 16:15:33 -05:00
commit 83c50da296
3 changed files with 23 additions and 0 deletions

3
.gitignore vendored Normal file
View File

@@ -0,0 +1,3 @@
*.o
*.d
/cav

13
Makefile Normal file
View File

@@ -0,0 +1,13 @@
CFILES = $(shell find . -name "*.c")
OFILES = $(CFILES:.c=.o)
DFILES = $(CFILES:.c=.d)
CC = clang
CFLAGS = -Wall -pedantic -MMD -Iinc
.PHONY: all
all: $(OFILES)
$(CC) $^ -o cav
%.o: %.c
$(CC) -c $(CFLAGS) $< -o $@

7
src/main.c Normal file
View File

@@ -0,0 +1,7 @@
#include <stdio.h>
int
main(void)
{
return 0;
}