aboutsummaryrefslogtreecommitdiffstats
path: root/Makefile
blob: 222a403e6a46e6f8f5ce668c644d719936ff87dc (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CC=gcc
BINPATH=bin/
CFLAGS=-c -Wall -std=gnu99
DEVFLAGS= -g -o $(BINPATH)devel/outfile-tmp                   \
-Wextra -Werror -pedantic                                     \
-O0 $(SOURCES)

SOURCES=main.c

.PHONY: all build clean install

all: 
    $(CC) $(CFLAGS) $(DEVFLAGS)

clean:
build:
install: