URL
https://opencores.org/ocsvn/System09/System09/trunk
Subversion Repositories System09
[/] [System09/] [trunk/] [mkfiles/] [def_cmds.mk] - Rev 71
Go to most recent revision | Compare with Previous | Blame | View Log
#-----------------------------------------------------------------
# File: Makefile
# Author: David Burnette
# Date: April 7, 2008
#
# Description:
# This makefile fragment defines common commands used by the
# the makefiles. Vendor-specific tools should be defined in
# the vendor-specific makefiles.
#
# Usage:
# This make file fragment should be included by the
# makefiles in the 'rtl' and 'src/...' directories.
#
# Dependencies:
# None
#
# Revision History:
# dgb 2008-04-07 Original version
#
#-----------------------------------------------------------------
#===================================================================
# DOS version of Unix-ish tools
CD := cd
CP := cp
CAT := cat
ECHO := echo
AWK := awk
SED := sed
GREP := grep
#RM := erase /s /q
RM := rm -f
#RMDIR := rmdir /s /q
RMDIR := rm -rf
MKDIR := mkdir
# 6809 Assembler
ASM := ../../Tools/as09/as09.exe
# Generate Xilinx block ram initialized with ROM contents
s19tovhd := ../../Tools/s19tovhd/S19toVHD.exe
Go to most recent revision | Compare with Previous | Blame | View Log