]> git.ipfire.org Git - thirdparty/freeradius-server.git/commitdiff
First attempt at integrating Travis
authorArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 25 Feb 2013 18:25:58 +0000 (13:25 -0500)
committerArran Cudbard-Bell <a.cudbardb@freeradius.org>
Mon, 25 Feb 2013 18:25:58 +0000 (13:25 -0500)
.travis.yml [new file with mode: 0644]
Makefile
src/tests/Makefile

diff --git a/.travis.yml b/.travis.yml
new file mode 100644 (file)
index 0000000..b455aa3
--- /dev/null
@@ -0,0 +1 @@
+language: c
index 243300262f9b494213bbc37276775671de275300..bd3709a5045fc953ea1c5f36f4195e2b90dfb91a 100644 (file)
--- a/Makefile
+++ b/Makefile
@@ -24,8 +24,8 @@ include scripts/boiler.mk
 # These are not yet converted to the new system
 SUBDIRS                = $(wildcard raddb)
 
-.PHONY: tests
-tests:
+.PHONY: test
+test:
        @$(MAKE) -C src/tests tests
 
 #
index 88f77b3a945a5badc9ce67d095f40f273b01ecec..6e29cd644d3ecd6ec90a7fb08bf05092d39fd858 100644 (file)
@@ -8,15 +8,10 @@
 #
 include ../../Make.inc
 
-ifeq "$(BOILER)" "yes"
-       BUILD_PATH := ../../build
-       BIN_PATH := $(BUILD_PATH)/bin/local
-       LIB_PATH := $(BUILD_PATH)/lib/local/.libs/
-       DYLD_LIBRARY_PATH := $(DYLD_LIBRARY_PATH):$(LIB_PATH)
-else
-       BIN_PATH := ../main
-       DYLD_LIBRARY_PATH := $(DYLD_LIBRARY_PATH):../lib/.libs/:../modules/lib/.libs/
-endif
+BUILD_PATH := ../../build
+BIN_PATH := $(BUILD_PATH)/bin/local
+LIB_PATH := $(BUILD_PATH)/lib/local/.libs/
+DYLD_LIBRARY_PATH := $(DYLD_LIBRARY_PATH):$(LIB_PATH)
 
 export DYLD_LIBRARY_PATH