rvemu

RISC-V RV32I execution engine
git clone git://mcdim.xyz/revemu.git
Log | Files | Refs

Makefile (334B)


      1 all:
      2 	gcc -g main.c exec.c disasm.c \
      3 	-Wall -Wextra -Wpedantic \
      4 	-Wconversion -Wsign-conversion \
      5 	-Wshadow -Wstrict-prototypes \
      6 	-Wmissing-prototypes -Wformat=2
      7 
      8 test:
      9 	gcc -g rtests.c exec.c disasm.c \
     10 	-Wall -Wextra -Wpedantic \
     11 	-Wconversion -Wsign-conversion \
     12 	-Wshadow -Wstrict-prototypes \
     13 	-Wmissing-prototypes -Wformat=2