@$(PREBUILD)
@rm -rf $(DIR_APP) && cd $(DIR_SRC) && tar zxf $(DIR_DL)/$(DL_FILE)
#cd $(DIR_APP) && sed -i -e "/*origOptString ==/c 0)" popt.c
-
-ifeq "$(STAGE)" "ipfire"
cd $(DIR_APP) && ./configure --prefix=/usr --disable-static
cd $(DIR_APP) && make $(PARALLELISMFLAGS)
cd $(DIR_APP) && make install
-endif
-
-ifeq "$(STAGE)" "installer"
- cd $(DIR_APP) && $(U_TOOLS) ac_cv_va_copy=yes \
- ./configure --prefix=/usr \
- --target=$(UCLIBC_TARGET) \
- --host=$(UCLIBC_TARGET) \
- --disable-nls
- cd $(DIR_APP) && make $(PARALLELISMFLAGS)
- cd $(DIR_APP) && make install DESTDIR=$(INSTALLER_DIR)
-endif
-
@rm -rf $(DIR_APP)
@$(POSTBUILD)