URL
https://opencores.org/ocsvn/System09/System09/trunk
Subversion Repositories System09
[/] [System09/] [rev_86/] [src/] [boot/] [Makefile] - Rev 135
Go to most recent revision | Compare with Previous | Blame | View Log
#-----------------------------------------------------------------# File: Makefile# Author: David Burnette# Date: April 7, 2008## Description:# This makefile generates the S19 record file .S19 from the# assembler source.## This particular makefile handles generating the FLEX bootstrap loader## Usage:# The targets generated by this makefile are:## make - makes all# make all - makes all# make bootcf8.S19 - CompactFlash bootstrap loader## Target Descriptions:# The first file listed is the source file passed to assembler.# Remaining files are the dependencies.## Dependencies:# This makefile depends on def_rules.mk.## Revision History:# dgb 2008-04-07 Original version##-----------------------------------------------------------------ifeq "$(MKFRAGS)" ""MKFRAGS := ../../mkfilesendifinclude $(MKFRAGS)/def_rules.mkall: bootcf8.S19bootcf8.S19: bootcf8.asm.PHONY: cleanclean:-$(RM) *.S19-$(RM) *.lst
Go to most recent revision | Compare with Previous | Blame | View Log
