Initial commit

This commit is contained in:
Casey 2024-09-05 20:56:32 +03:00
commit 3dd8217afe
Signed by: hkc
GPG Key ID: F0F6CFE11CDB0960
3 changed files with 24 additions and 0 deletions

2
.gitignore vendored Normal file
View File

@ -0,0 +1,2 @@
obj/*
obcb

16
Makefile Normal file
View File

@ -0,0 +1,16 @@
CFLAGS +=
LDFLAGS := -lm
OBJECTS :=
obcb: lib
$(CC) $(CFLAGS) $(OBJECTS) src/main.c $(LDFLAGS) -o obcb
all: obcb
lib: $(OBJECTS)
clean:
$(RM) $(OBJECTS) obcb
obj/%.o: src/%.c
$(CC) $(CFLAGS) -c $^ -o $@

6
src/main.c Normal file
View File

@ -0,0 +1,6 @@
#include <stdio.h>
#include <math.h>
int main(void) {
printf("Hi!\n");
}