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

18 lines
317 B

DB_BUILD = deps/db-6.0.20/build_unix
all: build_db
node-gyp build
clean:
$(MAKE) -C $(DB_BUILD) clean
node-gyp clean
config:
mkdir -p $(DB_BUILD)
TOP=`pwd` && cd $(DB_BUILD) && ../dist/configure --enable-debug --prefix=$$TOP #--disable-shared
node-gyp configure
build_db:
$(MAKE) -C $(DB_BUILD) install