URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [tools/] [vcdchk/] [Makefile] - Rev 294
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile for VCD check utility
#
BUILD = ../../build
all: vcdchk
install: vcdchk
mkdir -p $(BUILD)/bin
cp vcdchk $(BUILD)/bin
vcdchk: vcdchk.c
gcc -m32 -g -Wall -o vcdchk vcdchk.c
clean:
rm -f *~ vcdchk
Go to most recent revision | Compare with Previous | Blame | View Log