From ccc1dd7b4ba8ad5efe51aac32b26f0859d93fbe5 Mon Sep 17 00:00:00 2001 From: Marvin Borner Date: Mon, 5 Apr 2021 19:37:28 +0200 Subject: Restructured make layout and cleaned some apps --- apps/wm/Makefile | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 apps/wm/Makefile (limited to 'apps/wm/Makefile') diff --git a/apps/wm/Makefile b/apps/wm/Makefile new file mode 100644 index 0000000..66f68f6 --- /dev/null +++ b/apps/wm/Makefile @@ -0,0 +1,12 @@ +# MIT License, Copyright (c) 2021 Marvin Borner + +OBJS = wm.o + +all: $(OBJS) + @$(LD) -o $(BUILD)/apps/wm $(LDFLAGS) $< -lgui -ltxt -lc + +clean: + @$(RM) -f $(OBJS) + +%.o: %.c + @$(CC) -c $(CFLAGS) $< -o $@ -- cgit v1.2.3