URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [stdalone/] [twotasks-2/] [dump/] [Makefile] - Rev 62
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile for dump utility
#
.PHONY: all install clean
all: dump
install: dump
dump: dump.c
gcc -m32 -g -Wall -o dump dump.c
clean:
rm -f *~ dump
Go to most recent revision | Compare with Previous | Blame | View Log