Ready. Set. Go!

This commit is contained in:
hippoz 2022-08-15 02:05:36 +03:00
parent 9c7b29438a
commit b95c9acca1
Signed by: hippoz
GPG key ID: 7C52899193467641
3 changed files with 22 additions and 0 deletions

2
.gitignore vendored Normal file
View file

@ -0,0 +1,2 @@
main
*.o

15
Makefile Normal file
View file

@ -0,0 +1,15 @@
CFLAGS+=-Wall -Wextra -std=c99 -pedantic
LIBS=
PREFIX?=/usr/local
INSTALL?=install
main: main.c
$(CC) $(CFLAGS) -o main main.c $(LIBS)
.PHONY: all clean
all: main
clean:
rm main

5
main.c Normal file
View file

@ -0,0 +1,5 @@
#include <stdio.h>
int main() {
printf("Hello, world!!\n");
}