OpenCores
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 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

# Define default application extension
MY_OS := $(shell uname -s)
ifeq "$(findstring CYGWIN_NT,$(MY_OS))" "CYGWIN_NT"
EXE_EXT := .exe
else
EXE_EXT :=
endif

#  6809 Assembler
ASM      := ../../Tools/as09/as09$(EXE_EXT)

#  Generate Xilinx block ram initialized with ROM contents
s19tovhd := ../../Tools/s19tovhd/S19toVHD$(EXE_EXT)

Compare with Previous | Blame | View Log

powered by: WebSVN 2.1.0

© copyright 1999-2024 OpenCores.org, equivalent to Oliscience, all rights reserved. OpenCores®, registered trademark.