Fork of vcd with basic SystemVerilog support
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
CC=gcc |
|
CARGS=-Wall -Werror -O2 |
|
OBJ=vcd |
|
SRC=vcd.c |
|
PREFIX=/usr/local/ |
|
|
|
all: comp |
|
comp: |
|
$(CC) $(CARGS) -o $(OBJ) $(SRC) |
|
clean: |
|
rm -rf ./vcd |
|
install: |
|
cp ./$(OBJ) $(PREFIX)/bin/ |
|
uninstall: |
|
rm $(PREFIX)/bin/$(OBJ)
|
|
|