Showing with 18 additions and 1 deletion.
  1. +6 −1 posix.mak
  2. +12 −0 win32.mak
7 changes: 6 additions & 1 deletion posix.mak
Original file line number Diff line number Diff line change
Expand Up @@ -2,11 +2,16 @@ INSTALL_DIR=$(PWD)/../install
ECTAGS_LANGS = Make,C,C++,Sh
ECTAGS_FILES = src/*.[ch] src/backend/*.[ch] src/root/*.[ch] src/tk/*.[ch]

.PHONY: all clean test install
.PHONY: all clean test install auto-tester-build auto-tester-test

all:
$(QUIET)$(MAKE) -C src -f posix.mak

auto-tester-build:
$(QUIET)$(MAKE) -C src -f posix.mak $<

auto-tester-test: test

clean:
$(QUIET)$(MAKE) -C src -f posix.mak clean
$(QUIET)$(MAKE) -C test -f Makefile clean
Expand Down
12 changes: 12 additions & 0 deletions win32.mak
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
MAKE=make

auto-tester-build:
cd src
$(MAKE) -f win32.mak auto-tester-build
cd ..

auto-tester-test:
cd test
$(MAKE)
cd ..