From ea9463c3ba9335bc3d04dd04502ab9e67e8a718c Mon Sep 17 00:00:00 2001 From: lonkaars Date: Sun, 30 Oct 2022 20:33:41 +0100 Subject: finish merge --- client/makefile | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 client/makefile (limited to 'client/makefile') diff --git a/client/makefile b/client/makefile new file mode 100644 index 0000000..a87857a --- /dev/null +++ b/client/makefile @@ -0,0 +1,14 @@ +all: client + +ifeq ($(wildcard client.mk),) +client.mk: + qmake client.pro -o client.mk +endif + +include client.mk + +OBJECTS += $(patsubst %.c,%.o, $(wildcard ../shared/*.c)) +client: $(OBJECTS) + +../shared/%.o: ../shared/%.c + $(CC) -c $(CFLAGS) -w $< -o $@ -- cgit v1.2.3