From 483167d65a2027a413c1372a4c7e061f9a84c87a Mon Sep 17 00:00:00 2001 From: Robert Pengelly Date: Sun, 16 Mar 2025 12:19:11 +0000 Subject: [PATCH] Added Makefile.wat --- Makefile.unix | 5 ++--- Makefile.w32 | 6 +++--- Makefile.wat | 18 ++++++++++++++++++ 3 files changed, 23 insertions(+), 6 deletions(-) create mode 100644 Makefile.wat diff --git a/Makefile.unix b/Makefile.unix index 12d6638..14d855d 100644 --- a/Makefile.unix +++ b/Makefile.unix @@ -1,13 +1,11 @@ #****************************************************************************** # @file Makefile.unix #****************************************************************************** -OBJDIR ?= $(CURDIR) SRCDIR ?= $(CURDIR) - VPATH := $(SRCDIR) CC := gcc -CFLAGS := -D_FILE_OFFSET_BITS=64 -I$(OBJDIR) -I$(SRCDIR)/include -O2 -Wall -Werror -Wextra -ansi -pedantic -std=c90 +CFLAGS := -D_FILE_OFFSET_BITS=64 -O2 -Wall -Werror -Wextra -ansi -pedantic -std=c90 CSRC := append.c ar.c conv.c delete.c display.c extract.c lib.c ranlib.c replace.c report.c @@ -24,5 +22,6 @@ sar: $(CSRC) endif clean: + if [ -f sar ]; then rm -rf sar; fi if [ -f sar.exe ]; then rm -rf sar.exe; fi diff --git a/Makefile.w32 b/Makefile.w32 index 2b71ff5..8ca3b7b 100644 --- a/Makefile.w32 +++ b/Makefile.w32 @@ -1,21 +1,21 @@ #****************************************************************************** # @file Makefile.w32 #****************************************************************************** -OBJDIR ?= $(CURDIR) SRCDIR ?= $(CURDIR) - VPATH := $(SRCDIR) CC := gcc -CFLAGS := -D_FILE_OFFSET_BITS=64 -I$(OBJDIR) -I$(SRCDIR)/include -O2 -Wall -Werror -Wextra -ansi -pedantic -std=c90 +CFLAGS := -D_FILE_OFFSET_BITS=64 -O2 -Wall -Werror -Wextra -ansi -pedantic -std=c90 CSRC := append.c ar.c conv.c delete.c display.c extract.c lib.c ranlib.c replace.c report.c all: sar.exe clean: + if exist sar ( del /q sar ) if exist sar.exe ( del /q sar.exe ) sar.exe: $(CSRC) + $(CC) $(CFLAGS) -o $@ $^ diff --git a/Makefile.wat b/Makefile.wat new file mode 100644 index 0000000..dfc1286 --- /dev/null +++ b/Makefile.wat @@ -0,0 +1,18 @@ +#****************************************************************************** +# @file Makefile.wat +#****************************************************************************** +SRCDIR ?= $(CURDIR) +VPATH := $(SRCDIR) + +SRC := append.c ar.c conv.c delete.c display.c extract.c lib.c ranlib.c replace.c report.c + +all: sar.exe + +sar.exe: $(SRC) + + wcl -fe=$@ $^ + +clean: + + for /r %%f in (*.obj) do ( if exist %%f ( del /q %%f ) ) + if exist sar.exe ( del /q sar.exe ) -- 2.34.1