mirror of
https://github.com/hoglet67/AtomBusMon.git
synced 2024-12-23 07:29:39 +00:00
16 lines
409 B
Makefile
16 lines
409 B
Makefile
|
# The root directory of the project
|
||
|
ROOT = ../../..
|
||
|
|
||
|
# The common directory for makefile includes, etc.
|
||
|
COMMON = ../../common
|
||
|
|
||
|
# The project .bit file produced by the Xilinx .xise project
|
||
|
PROJECT = AtomCpuMon
|
||
|
|
||
|
# The target .bit file to be generated including the monitor program
|
||
|
TARGET = ice6502
|
||
|
|
||
|
# Common include files
|
||
|
include $(COMMON)/Makefile_$(TARGET).inc
|
||
|
include $(COMMON)/Makefile.inc
|