From 0e784db07655c367c3f904511d34ae0959465990 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Rados=C5=82aw=20Kujawa?= Date: Thu, 26 Jan 2017 21:37:54 +0100 Subject: [PATCH] Don't forget to link with utils. --- test/Makefile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/test/Makefile b/test/Makefile index 6bc4530..9cf0061 100644 --- a/test/Makefile +++ b/test/Makefile @@ -11,10 +11,10 @@ TESTROMS:=$(addsuffix .rom,$(basename $(wildcard *.s))) all : $(TESTS) $(TESTROMS) test_bus : test_bus.o $(UTILS) $(RK6502LIB) - $(CC) -o $@ $(LDFLAGS) $< $(RK6502LIB) + $(CC) -o $@ $(LDFLAGS) $< $(UTILS) $(RK6502LIB) test_emulation : test_emulation.o $(UTILS) $(RK6502LIB) - $(CC) -o $@ $(LDFLAGS) $< $(RK6502LIB) + $(CC) -o $@ $(LDFLAGS) $< $(UTILS) $(RK6502LIB) %.rom : %.s $(VASM) $(VASMFLAGS) -o $@ $<