Changed example makefiles to include common Makefile instead of adding additional targets

Signed-off-by: Joshua Fife <jpfife17@gmail.com>
This commit is contained in:
Joshua Fife 2021-08-11 11:32:59 -06:00
parent 2af9d695a7
commit 052c10e2f2
3 changed files with 3 additions and 20 deletions

View file

@ -17,10 +17,5 @@ else
XDC := ${current_dir}/basys3.xdc
endif
export
all:
cd ../../common && $(MAKE)
clean:
cd ../../common && $(MAKE) clean
include ${current_dir}/../../common/Makefile

View file

@ -9,10 +9,4 @@ PCF := ${current_dir}/arty.pcf
SDC := ${current_dir}/arty.sdc
XDC := ${current_dir}/arty.xdc
export
all:
cd ../../common && $(MAKE)
clean:
cd ../../common && $(MAKE) clean
include ${current_dir}/../../common/Makefile

View file

@ -21,10 +21,4 @@ else
PCF := ${current_dir}/basys3.pcf
endif
export
all:
cd ../../common && $(MAKE)
clean:
cd ../../common && $(MAKE) clean
include ${current_dir}/../../common/Makefile