Skip to content

Commit 95c95a1

Browse files
committed
Fix Windows linker errors by adding missing source files
1 parent 4dd76ed commit 95c95a1

File tree

1 file changed

+9
-2
lines changed

1 file changed

+9
-2
lines changed

scripts/create-minimal-makefile.sh

Lines changed: 9 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -82,7 +82,13 @@ LIBATARI800_OBJS = \
8282
src/libatari800/main.o \
8383
src/libatari800/init.o \
8484
src/libatari800/input.o \
85-
src/libatari800/statesav.o
85+
src/libatari800/statesav.o \
86+
src/devices.o \
87+
src/img_tape.o \
88+
src/remez.o \
89+
src/libatari800/platform.o \
90+
src/libatari800/video.o \
91+
src/libatari800/sound.o
8692
8793
all: src/libatari800.a
8894
@@ -211,4 +217,5 @@ echo "You can now run 'make' to build libatari800.a"
211217

212218
# Create a marker file to indicate minimal build was used
213219
echo "MINIMAL_BUILD_USED=$(date)" > .minimal-build-marker
214-
echo "Minimal build marker created for debugging"
220+
echo "Minimal build marker created for debugging"
221+

0 commit comments

Comments
 (0)