1
0
mirror of synced 2025-01-31 03:53:42 +01:00

Update docker and makefile

This commit is contained in:
Bobby Dilley 2025-01-09 11:03:03 +00:00
parent 7f1558b723
commit 9e97712811
2 changed files with 5 additions and 15 deletions

View File

@ -1,17 +1,18 @@
FROM debian:bullseye AS lindbergh-build
FROM ubuntu:22.04 AS lindbergh-build
RUN dpkg --add-architecture i386 \
&& apt-get update \
&& apt-get install -y --no-install-recommends \
&& apt update \
&& apt install -y --no-install-recommends \
build-essential \
gcc-multilib \
freeglut3-dev:i386 \
libsdl2-dev:i386 \
libfaudio-dev:i386 \
&& apt-get clean \
&& apt clean \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /lindbergh-loader
COPY . .
RUN make

View File

@ -46,17 +46,6 @@ libposixtime.so:
# Clean rule
clean:
rm -f $(BUILD)/lindbergh.so
rm -f $(BUILD)/libsegaapi.so
rm -f $(BUILD)/lindbergh
rm -f src/lindbergh/*.o
rm -f src/libsegaapi/*.o
#clean all rule
cleanall:
rm -rf $(BUILD)
rm -f src/lindbergh/*.o
rm -f src/libsegaapi/*.o
rm -f src/libkswapapi/*.o
rm -f src/libxdiff/*.a
rm -f src/libxdiff/xdiff/*.o