clean (C) project setup
This commit is contained in:
commit
89c83f5408
1
.gitignore
vendored
Normal file
1
.gitignore
vendored
Normal file
@ -0,0 +1 @@
|
|||||||
|
out/
|
6
Makefile
Normal file
6
Makefile
Normal file
@ -0,0 +1,6 @@
|
|||||||
|
all: main
|
||||||
|
|
||||||
|
files = src/main.c
|
||||||
|
|
||||||
|
main:
|
||||||
|
cc $(files) -o out/why2
|
0
out/.gitkeep
Normal file
0
out/.gitkeep
Normal file
9
src/main.c
Normal file
9
src/main.c
Normal file
@ -0,0 +1,9 @@
|
|||||||
|
#include <stdio.h>
|
||||||
|
|
||||||
|
int
|
||||||
|
main()
|
||||||
|
{
|
||||||
|
printf("Fuk of\n");
|
||||||
|
|
||||||
|
return 0;
|
||||||
|
}
|
Loading…
x
Reference in New Issue
Block a user