URL
https://opencores.org/ocsvn/eco32/eco32/trunk
Subversion Repositories eco32
[/] [eco32/] [trunk/] [monitor/] [monitor/] [kbdtbls/] [Makefile] - Rev 218
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile to construct the keyboard mapping tables
#
.PHONY: all install clean
all: kbdtbls.s
install: kbdtbls.s
kbdtbls.s: mkkbdtbls
./mkkbdtbls >kbdtbls.s
mkkbdtbls: mkkbdtbls.c
gcc -m32 -g -Wall -o mkkbdtbls mkkbdtbls.c
clean:
rm -f *~ mkkbdtbls kbdtbls.s
Go to most recent revision | Compare with Previous | Blame | View Log