(g)makefile, structuring filesystem
[systembsd.git] / Makefile
... / ...
CommitLineData
1CC=gcc
2BINPATH=bin/
3CFLAGS=-c -Wall -std=gnu99
4DEVFLAGS= -g -o $(BINPATH)devel/outfile-tmp \
5-Wextra -Werror -pedantic \
6-O0 $(SOURCES)
7
8SOURCES=main.c
9
10.PHONY: all build clean install
11
12all:
13 $(CC) $(CFLAGS) $(DEVFLAGS)
14
15clean:
16build:
17install:
18