cvm: remove makefile duplicate recipe

This commit is contained in:
Virgil Dupras 2020-06-30 10:29:06 -04:00
parent d97012ecae
commit fff893452d
1 changed files with 0 additions and 3 deletions

View File

@ -21,9 +21,6 @@ blkfs: $(BLKPACK)
forth: forth.c $(OBJS)
$(CC) forth.c $(OBJS) -lncurses -o $@
stage: stage.c $(OBJS)
$(CC) stage.c $(OBJS) -o $@
vm.o: vm.c blkfs
$(CC) -DFBIN_PATH=\"`pwd`/forth.bin\" -DBLKFS_PATH=\"`pwd`/blkfs\" -c -o vm.o vm.c