aboutsummaryrefslogtreecommitdiff
path: root/Makefile
blob: bf3c585fce01f379fd7573a8d10d740fcf8ea90e (plain)
1
2
3
4
5
6
7
8
CC = gcc
CFLAGS=-std=c99 -pedantic-errors

build: main.c
	$(CC) $(CFLAGS) main.c -o main

debug: main.c 
	$(CC) -g main.c -o main $(CFLAGS)
Feel free to download, copy and edit any repo