1
0
mirror of https://github.com/wfjm/w11.git synced 2026-02-17 13:27:33 +00:00
Files
wfjm.w11/tools/src/testtclsh/Makefile
Walter F.J. Mueller e1479d4e5d - Add Arty support (BRAM only)
- Add sysmon/xadc support (for nexys4,basys3,arty designs)
- Add Vivado simulator support (DPI not yet working)
2016-03-19 15:45:59 +00:00

49 lines
1.1 KiB
Makefile

# $Id: Makefile 733 2016-02-20 12:24:13Z mueller $
#
# Revision History:
# Date Rev Version Comment
# 2013-02-10 485 1.0 Initial version
#
# Compile and Link search paths
#
include ../checkpath_cpp.mk
#
INCLFLAGS = -I${TCLINC} -I${RETROBASE}/tools/src
LDLIBS = -lreadline
LDLIBS += -L${TCLLIB} -l${TCLLIBNAME} -lreadline
LDLIBS += -L${RETROBASE}/tools/lib -lrtcltools
LDLIBS += -lrutiltpp -lrlinktpp -lrwxxtpp
#LDLIBS += -lrusbtpp
#
# Object files to be included
#
OBJ_all = testtclsh.o
#
DEP_all = $(OBJ_all:.o=.dep)
#
testtclsh : $(OBJ_all)
#- generic part ----------------------------------------------------------------
#
include ${RETROBASE}/tools/make/generic_cpp.mk
include ${RETROBASE}/tools/make/generic_dep.mk
include ${RETROBASE}/tools/make/dontincdep.mk
#
# The magic auto-dependency include
#
ifndef DONTINCDEP
include $(DEP_all)
endif
#
# cleanup phonies:
#
.PHONY : clean cleandep distclean
clean :
@ rm -f $(OBJ_all)
@ echo "Object files removed"
#
cleandep :
@ rm -f $(DEP_all)
@ echo "Dependency files removed"
#