diff --git a/Makefiles/Kconfig.boards b/Makefiles/Kconfig.boards index 729eb4d..dacad64 100644 --- a/Makefiles/Kconfig.boards +++ b/Makefiles/Kconfig.boards @@ -1,5 +1,3 @@ - - choice prompt "board type" default BOARD_ML505 diff --git a/Makefiles/Makefile b/Makefiles/Makefile index deb8551..274a283 100644 --- a/Makefiles/Makefile +++ b/Makefiles/Makefile @@ -13,6 +13,7 @@ DEVICE_NR=$(subst ", , $(CONFIG_IMPACT_TARGET)) endif TOP=top +BIT=soc.bit ifndef UCF UCF=$(subst ", , $(CONFIG_UCF_NAME)) @@ -84,7 +85,7 @@ endif .PHONY: clean all real_clean -all: +all: soc.bit real_clean: git clean -x -f @@ -93,7 +94,7 @@ clean: kconfig_clean -@rm -rf Make.sources ${CLEAN_FILES} $(OBJ) -Make.sources: Makefile.files Makefile.modules +Make.sources: .config Makefile.files Makefile.modules @clear @echo "****************************************************************************************" @echo "**** XILINX Synthesis, Map, Place, Route and Modelsim Makefile Version " $(VERSION) @@ -115,11 +116,11 @@ impact.script: @echo "quit" >> $@ program: impact.script - echo "**** Programming FPGA ****" - [ -n "$(BIT)" ] || ( echo "**** Please give Bitfile on commandline with BIT=" && exit 1) - cp $(BIT) flash.bit - $(XILINX_PATH)/impact -batch impact.script 1>/dev/null - rm impact.script + @echo "**** Programming FPGA ****" + @[ -n "$(BIT)" ] || ( echo "**** Please give Bitfile on commandline with BIT=" && exit 1) + @cp $(BIT) flash.bit + @$(XILINX_PATH)/impact -batch impact.script 1>/dev/null + @rm impact.script include $(MAKEFILES_PATH)/Makefile.configure diff --git a/Makefiles/kconfig/lxdialog/inputbox.o b/Makefiles/kconfig/lxdialog/inputbox.o deleted file mode 100644 index e47ff33..0000000 Binary files a/Makefiles/kconfig/lxdialog/inputbox.o and /dev/null differ