Skip to content

Commit

Permalink
Compile virtio-net.c into virtio-net.o during build process
Browse files Browse the repository at this point in the history
Added compilation rule to include virtio-net.c and generate
virtio-net.o object file in the Makefile. This change ensures
that the virtio-net functionality is compiled and linked correctly
into the project.
  • Loading branch information
jimmylu890303 committed Jul 9, 2024
1 parent aea66b8 commit f447bb3
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ OBJS := \
pci.o \
virtio-pci.o \
virtq.o \
virtio-blk.o \
virtio-blk.o virtio-net.o\
diskimg.o \
main.o

Expand Down

0 comments on commit f447bb3

Please sign in to comment.