URL
https://opencores.org/ocsvn/System09/System09/trunk
Subversion Repositories System09
[/] [System09/] [trunk/] [src/] [fmt/] [Makefile] - Rev 119
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
#
# 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 := ../../mkfiles
endif
include $(MKFRAGS)/def_rules.mk
all: fmt_cf8.S19 fmt_ide.S19
fmt_cf8.S19: fmt_cf8.asm
fmt_ide.S19: fmt_ide.asm
.PHONY: clean
clean:
-$(RM) *.S19
-$(RM) *.lst
Go to most recent revision | Compare with Previous | Blame | View Log