Added Makefile.wat
authorRobert Pengelly <robertapengelly@hotmail.com>
Sun, 16 Mar 2025 12:19:11 +0000 (12:19 +0000)
committerRobert Pengelly <robertapengelly@hotmail.com>
Sun, 16 Mar 2025 12:19:11 +0000 (12:19 +0000)
Makefile.unix
Makefile.w32
Makefile.wat [new file with mode: 0644]

index 12d6638bfaf4fdb6d0fb126403411f2a5f0f8929..14d855d53551bfec7bfd5c800cbc98a4f1c1e1a7 100644 (file)
@@ -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
index 2b71ff500dc86be0f3c78be03cff2db9fb41c121..8ca3b7b37feb2abeb2c9dc205bd10f5d36832499 100644 (file)
@@ -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 (file)
index 0000000..dfc1286
--- /dev/null
@@ -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 )