Skip to content

Commit

Permalink
add top level make files
Browse files Browse the repository at this point in the history
  • Loading branch information
braddr committed Jun 5, 2015
1 parent e8cc0de commit 69ab2d6
Show file tree
Hide file tree
Showing 2 changed files with 18 additions and 1 deletion.
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 ..

0 comments on commit 69ab2d6

Please sign in to comment.