Initial commit

This commit is contained in:
Casey 2024-04-04 14:45:55 +03:00
commit 7dec667c7d
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/*
livewp

16
Makefile Normal file
View File

@ -0,0 +1,16 @@
CFLAGS +=
LDFLAGS := -lm
OBJECTS :=
livewp: lib
$(CC) $(CFLAGS) $(OBJECTS) src/main.c $(LDFLAGS) -o livewp
all: livewp
lib: $(OBJECTS)
clean:
$(RM) $(OBJECTS) livewp
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");
}