X-Git-Url: http://git.openwrt.org/?p=openwrt%2Fsvn-archive%2Farchive.git;a=blobdiff_plain;f=include%2Fscons.mk;fp=include%2Fscons.mk;h=223aedefaf6ae68eb060d100c3857e4a14c8cf50;hp=0000000000000000000000000000000000000000;hb=5eeae256664e4e84485434e8bd8a79b2a1dbc5cc;hpb=bf8bd4187b4515ebb1ecf344a20d21c711bdf099 diff --git a/include/scons.mk b/include/scons.mk new file mode 100644 index 0000000000..223aedefaf --- /dev/null +++ b/include/scons.mk @@ -0,0 +1,21 @@ +SCONS_VARS = \ + CC="$(TARGET_CC)" \ + CXX="$(TARGET_CXX)" \ + CFLAGS="$(TARGET_CFLAGS) $(EXTRA_CFLAGS)" \ + CXXFLAGS="$(TARGET_CFLAGS) $(EXTRA_CFLAGS)" \ + CPPFLAGS="$(TARGET_CPPFLAGS) $(EXTRA_CPPFLAGS)" \ + LDFLAGS="$(TARGET_LDFLAGS) $(EXTRA_LDFLAGS)" \ + DESTDIR="$(PKG_INSTALL_DIR)" + +define Build/Configure/Default + (cd $(PKG_BUILD_DIR); \ + $(SCONS_VARS) \ + scons \ + prefix=/usr \ + $(SCONS_OPTIONS) \ + install \ + ) +endef + +define Build/Compile +endef