Skip to content

Commit

Permalink
swap gen.S and main.S in instructions/rvv/
Browse files Browse the repository at this point in the history
  • Loading branch information
camel-cdr committed Jul 5, 2024
1 parent bc7b273 commit bdb5425
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions instructions/rvv/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,10 @@ include ../../config.mk

all: rvv

rvv: main.S main.c config.h
m4 main.S > gen.S
${CC} ${CFLAGS} -s gen.S main.c -o $@
rm gen.S
rvv: gen.S main.c config.h
m4 gen.S > main.S
${CC} ${CFLAGS} -s main.S main.c -o $@
rm main.S

clean:
rm -f rvv
Expand Down
File renamed without changes.

0 comments on commit bdb5425

Please sign in to comment.