X-Git-Url: https://uglyman.kremlin.cc/gitweb/gitweb.cgi?a=blobdiff_plain;f=Makefile;h=222a403e6a46e6f8f5ce668c644d719936ff87dc;hb=32a2d8e20882543d2feac2641c54ff0ba65f84fa;hp=631a7abd412341dedd7d4e1b96b9005350a0d125;hpb=5918aae8a60242e6152a34eff72d67bf97ea606d;p=systembsd.git diff --git a/Makefile b/Makefile index 631a7ab..222a403 100644 --- a/Makefile +++ b/Makefile @@ -1 +1,18 @@ -# see next commit +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: +