You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
SSLproxy/GNUmakefile

88 lines
1.6 KiB
Makefile

SRCDIR:= src
CHECKTESTSDIR:= tests/check
TESTPROXYTESTSDIR:= tests/testproxy
TARGET:= sslproxy
all: $(TARGET)
$(TARGET):
$(MAKE) -C $(SRCDIR)
test: $(TARGET)
$(MAKE) unittest
$(MAKE) e2etest
unittest: $(TARGET)
$(MAKE) -C $(CHECKTESTSDIR)
e2etest: $(TARGET)
$(MAKE) -C $(TESTPROXYTESTSDIR)
e2etest_split: $(TARGET)
$(MAKE) -C $(TESTPROXYTESTSDIR) test_split
clean:
$(MAKE) -C $(SRCDIR) clean
$(MAKE) -C $(CHECKTESTSDIR) clean
travis: $(TARGET)
$(MAKE) travisunittest
# The e2e tests with all of the openssl/libressl versions in .travis.yml run
# without any error locally, but fail on travis-ci.com now. So disable until fixed.
#$(MAKE) travise2etest
travisunittest: $(TARGET)
$(MAKE) -C $(CHECKTESTSDIR) travis
travise2etest: $(TARGET)
$(MAKE) -C $(TESTPROXYTESTSDIR) travis
install:
$(MAKE) -C $(SRCDIR) install
deinstall:
$(MAKE) -C $(SRCDIR) deinstall
lint:
$(MAKE) -C $(SRCDIR) lint
manlint:
$(MAKE) -C $(SRCDIR) manlint
mantest:
$(MAKE) -C $(SRCDIR) mantest
copyright: *.c *.h *.1 *.5 extra/*/*.c
Mk/bin/copyright.py $^
man:
$(MAKE) -C $(SRCDIR) man
manclean:
$(MAKE) -C $(SRCDIR) manclean
fetchdeps:
$(WGET) -O- $(KHASH_URL) >$(SRCDIR)/khash.h
#$(RM) -rf xnu/xnu-*
$(MAKE) -C xnu fetch
dist:
$(MAKE) -C $(SRCDIR) dist
disttest:
$(MAKE) -C $(SRCDIR) disttest
distclean:
$(MAKE) -C $(SRCDIR) distclean
realclean:
$(MAKE) -C $(SRCDIR) realclean
$(MAKE) -C $(CHECKTESTSDIR) realclean
FORCE:
.PHONY: all config clean buildtest test sudotest travis lint \
install deinstall copyright manlint mantest man manclean fetchdeps \
dist disttest distclean realclean