Skip to content

Commit

Permalink
repaired build system
Browse files Browse the repository at this point in the history
  • Loading branch information
Stefan Jahn authored and Richard Carlsson committed Apr 12, 2013
1 parent c9c9a86 commit 6507571
Show file tree
Hide file tree
Showing 4 changed files with 8 additions and 5 deletions.
3 changes: 0 additions & 3 deletions Makefile
Expand Up @@ -9,9 +9,6 @@ clean:
(cd src;$(MAKE) clean)
(cd c_src;$(MAKE) clean)

release: clean appfile
sh ../../support/create_release.sh

appfile:
(cd src && $(MAKE) ../ebin/fd_server.app)

Expand Down
2 changes: 1 addition & 1 deletion c_src/Makefile
@@ -1,5 +1,5 @@

include ../../../support/include.mk
include ../config/include.mk


## don't build this under win32 or mac osx at all
Expand Down
6 changes: 6 additions & 0 deletions config/configure.in
Expand Up @@ -8,6 +8,12 @@ dnl Programs

AC_PROG_CC

AC_PATH_PROG(ERL, erl, erl)
AC_PATH_PROG(ERLC, erlc, erlc)
JUNGERL_DIR=$(dirname `pwd`)
AC_SUBST(JUNGERL_DIR)
ERLDIR=`awk -F= '/ROOTDIR=/ { print [$]2; exit; }' $ERL`
AC_SUBST(ERLDIR)

dnl C header files

Expand Down
2 changes: 1 addition & 1 deletion src/Makefile
@@ -1,5 +1,5 @@

include ../../../support/include.mk
include ../config/include.mk

include ../vsn.mk
VSN=$(FD_SERVER_VSN)
Expand Down

0 comments on commit 6507571

Please sign in to comment.