This commit is contained in:
Vlasta Vesely 2018-04-25 14:29:11 +02:00
commit 44cc47701e
2 changed files with 20 additions and 0 deletions

8
Makefile Normal file
View file

@ -0,0 +1,8 @@
.PHONY: all clean
all:
$(CC) main.c -o main
./main
clean:
$(RM) -f main

12
main.c Normal file
View file

@ -0,0 +1,12 @@
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
int main(int argc, const char **argv)
{
return 0;
}