summaryrefslogtreecommitdiff
path: root/src/pkg/Makefile
diff options
context:
space:
mode:
Diffstat (limited to 'src/pkg/Makefile')
-rw-r--r--src/pkg/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/src/pkg/Makefile b/src/pkg/Makefile
index 6ba6951af..619167ca4 100644
--- a/src/pkg/Makefile
+++ b/src/pkg/Makefile
@@ -187,7 +187,7 @@ NOBENCH=\
# Disable tests that depend on an external network.
ifeq ($(DISABLE_NET_TESTS),1)
-NOTEST+=http net
+NOTEST+=http net syslog
endif
# Disable tests that windows cannot run yet.
@@ -211,19 +211,19 @@ test.dirs: $(addsuffix .test, $(TEST))
bench.dirs: $(addsuffix .bench, $(BENCH))
%.clean:
- +cd $* && gomake clean
+ +cd $* && $(MAKE) clean
%.install:
- +cd $* && gomake install
+ +cd $* && $(MAKE) install
%.nuke:
- +cd $* && gomake nuke
+ +cd $* && $(MAKE) nuke
%.test:
- +cd $* && gomake test
+ +cd $* && $(MAKE) test
%.bench:
- +cd $* && gomake bench
+ +cd $* && $(MAKE) bench
clean: clean.dirs