Skip to content

Commit 065c9fb

Browse files
committed
Fix a mistake in the compile script; the level table loading means that function.c also depends on instruc.h, so delete function.o if instruc.h is newer.
1 parent fa2ed38 commit 065c9fb

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compile

+1-1
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ test quarks -nt quarks.h && node quarks.js > quarks.h
3232
test quarks.js -nt quarks.h && node quarks.js > quarks.h
3333
test comconfig.h -nt "$EXE" && rm bindings.o class.o picture.o function.o exec.o game.o edit.o picedit.o sound.o || true
3434
test heromesh.h -nt "$EXE" && rm bindings.o class.o picture.o function.o exec.o game.o edit.o picedit.o sound.o || true
35-
test instruc.h -nt "$EXE" && rm class.o exec.o || true
35+
test instruc.h -nt "$EXE" && rm class.o exec.o function.o || true
3636
test pcfont.h -nt "$EXE" && rm picture.o || true
3737
test quarks.h -nt "$EXE" && rm bindings.o edit.o exec.o game.o picture.o picedit.o || true
3838
echo '* smallxrm'

0 commit comments

Comments
 (0)