diff options
Diffstat (limited to 'makefile')
-rw-r--r-- | makefile | 30 |
1 files changed, 30 insertions, 0 deletions
diff --git a/makefile b/makefile new file mode 100644 index 0000000..65dd0ed --- /dev/null +++ b/makefile @@ -0,0 +1,30 @@ +CC = clang + +PROJECT = engine33 +OBJS = main.o system.o logger.o clock.o display.o + +PDIR = ./bin +.PATH: ./src + +INCS = -I./include -I./include/musl -I./include/libdrm + +LIBS = -L./lib/musl -L./lib/libdrm + +CFLAGS = -O2 -march=native -mtune=native -std=c99 -static -w -Wall -Werror -Wextra -Wshadow -Wpedantic -D_XOPEN_SOURCE=700 +#stops soypilers complaining about signals + +.MAKE.JOBS = 1C + + +.SUFFIXES: .o .c +.c.o: + $(CC) $(CFLAGS) -o $(.TARGET) $(INCS) -c $(.IMPSRC) + + +$(PROJECT): $(OBJS) + $(CC) $(CFLAGS) $(LIBS) -o $(.TARGET) $(.OODATE) + mv $(.TARGET) $(.ALLSRC:T) $(PDIR) + +clean: + rm bin/*.out + |