X-Git-Url: https://uglyman.kremlin.cc/gitweb/gitweb.cgi?p=systembsd.git;a=blobdiff_plain;f=Makefile;h=222a403e6a46e6f8f5ce668c644d719936ff87dc;hp=5ccb2e0536f6dc7c0b3a0599fac74492919641cb;hb=32a2d8e20882543d2feac2641c54ff0ba65f84fa;hpb=9fd3f859f758d01727ccb30b130f2052eac3b66f diff --git a/Makefile b/Makefile index 5ccb2e0..222a403 100644 --- a/Makefile +++ b/Makefile @@ -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: