URL
https://opencores.org/ocsvn/System09/System09/trunk
Subversion Repositories System09
[/] [System09/] [trunk/] [mkfiles/] [def_cmds.mk] - Rev 73
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 toolsCD := cdCP := cpCAT := catECHO := echoAWK := awkSED := sedGREP := grep#RM := erase /s /qRM := rm -f#RMDIR := rmdir /s /qRMDIR := rm -rfMKDIR := mkdir# Define default application extensionMY_OS := $(shell uname -s)ifeq "$(findstring CYGWIN_NT,$(MY_OS))" "CYGWIN_NT"EXE_EXT := .exeelseEXE_EXT :=endif# 6809 AssemblerASM := ../../Tools/as09/as09$(EXE_EXT)# Generate Xilinx block ram initialized with ROM contentss19tovhd := ../../Tools/s19tovhd/S19toVHD$(EXE_EXT)
