init commit

master
segfault 2025-02-15 18:42:50 +05:00
parent 3132b9b584
commit 8bb651ccc0
Signed by: segfault
GPG Key ID: 8B1121D84DAB1BBF
3 changed files with 16 additions and 2 deletions

10
Makefile 100644
View File

@ -0,0 +1,10 @@
all: counter.cgi
counter.cgi: counter.o
$(CC) $(CFLAGS) $(LDFLAGS) counter.o -o $@
counter.o: src/counter.c
$(CC) $(CFLAGS) $< -c -o $@
clean:
rm counter.o counter.cgi

View File

@ -1,2 +0,0 @@
# counter

6
src/counter.c 100644
View File

@ -0,0 +1,6 @@
int
main(void)
{
return 0;
}