diff options
Diffstat (limited to 'Makefile')
-rw-r--r-- | Makefile | 17 |
1 files changed, 15 insertions, 2 deletions
@@ -1,5 +1,18 @@ -# use gmake! +CC=gcc +BINPATH=bin/ +CFLAGS=-c -Wall -std=gnu99 +DEVFLAGS= -g -o $(BINPATH)devel/outfile-tmp \ +-Wextra -Werror -pedantic \ +-O0 $(SOURCES) -.PHONY: all +SOURCES=main.c +.PHONY: all build clean install + +all: + $(CC) $(CFLAGS) $(DEVFLAGS) + +clean: +build: +install: |