Skip to content

Commit

Permalink
conditional
Browse files Browse the repository at this point in the history
  • Loading branch information
dthain committed Dec 15, 2023
1 parent f315e93 commit 4afebc1
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 @@ -32,7 +32,7 @@ image: kernel/basekernel.img $(USER_PROGRAMS)
mkdir image image/boot image/bin image/data
cp kernel/basekernel.img image/boot
cp $(USER_PROGRAMS) image/bin
[ -f ${WORDS} ] && head -2000 ${WORDS} > image/data/words
if [ -f ${WORDS} ]; then head -2000 ${WORDS} > image/data/words; fi

basekernel.iso: image
${ISOGEN} -input-charset utf-8 -iso-level 2 -J -R -o $@ -b boot/basekernel.img image
Expand Down

0 comments on commit 4afebc1

Please sign in to comment.