#******************************************************************************
# @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
endif
clean:
+
if [ -f sar ]; then rm -rf sar; fi
if [ -f sar.exe ]; then rm -rf sar.exe; fi
#******************************************************************************
# @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 $@ $^
--- /dev/null
+#******************************************************************************
+# @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 )