URL
https://opencores.org/ocsvn/System09/System09/trunk
Subversion Repositories System09
[/] [System09/] [trunk/] [src/] [fmt/] [Makefile] - Rev 66
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## Usage:# The targets generated by this makefile are:## make - makes all# make all - makes all# make fmt_cf8.S19 -# make fmt_ide.S19 -## 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: fmt_cf8.S19 fmt_ide.S19fmt_cf8.S19: fmt_cf8.asmfmt_ide.S19: fmt_ide.asm.PHONY: cleanclean:-$(RM) *.S19-$(RM) *.lst
