From 1f608dafdfea595f212dfa53539202815e152b3b Mon Sep 17 00:00:00 2001 From: Nishi Date: Fri, 6 Mar 2026 23:36:20 +0900 Subject: [PATCH] test --- Makefile | 3 +++ Makefile.watcom | 1 + 2 files changed, 4 insertions(+) diff --git a/Makefile b/Makefile index 9c27fb8..9594f43 100644 --- a/Makefile +++ b/Makefile @@ -2,6 +2,7 @@ CC ?= cc CFLAGS ?= -I external/xemil/include -I src LDFLAGS ?= LIBS ?= +AFTER ?= E ?= @@ -13,6 +14,8 @@ include objs.mk taiga$(E): $(OBJS) $(CC) $(LDFLAGS) -o $@ $(OBJS) $(LIBS) + $(AFTER) + -rm -f *.res format: clang-format --verbose -i `find src -name "*.c" -or -name "*.h"` diff --git a/Makefile.watcom b/Makefile.watcom index 220c2d9..62038b2 100644 --- a/Makefile.watcom +++ b/Makefile.watcom @@ -1,4 +1,5 @@ CC = owcc -bnt E = .exe +AFTER = wrc src/taiga.rc taiga.exe include Makefile