]> git.gir.st - base1.git/blob - Makefile
First version
[base1.git] / Makefile
1 # base1
2 # (C) 2016 Tobias Girstmair, http://isticktoit.net/
3 # released under the GNU GPL v3. See LICENSE for details.
4
5 .PHONY: all clean test
6 CC=gcc
7 CFLAGS=-std=c99 -Werror -Wall -Wextra
8
9 all: base1
10
11 base1:
12 $(CC) $(CFLAGS) main.c -o base1
13
14 clean:
15 rm -f base1
Imprint / Impressum