From 294b585994da4427ac98a8353ff41aed5f301d54 Mon Sep 17 00:00:00 2001 From: pk33 Date: Fri, 1 Nov 2024 23:51:15 +0100 Subject: Import and fix old code --- makefile | 30 ++++++++++++++++++++++++++++++ 1 file changed, 30 insertions(+) create mode 100644 makefile (limited to 'makefile') 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 + -- cgit v1.2.3