URL
https://opencores.org/ocsvn/logicprobe/logicprobe/trunk
Subversion Repositories logicprobe
[/] [logicprobe/] [trunk/] [src/] [pc/] [Makefile] - Rev 8
Go to most recent revision | Compare with Previous | Blame | View Log
#
# Makefile to build the analyzer programs running on the PC side
#
all: receive display
receive: receive.c
gcc -Wall -o receive receive.c
display: display.c
gcc -Wall -o display display.c
clean:
rm -f *~ receive display
Go to most recent revision | Compare with Previous | Blame | View Log