https://github.com/virtualagc/virtualagc
Raw File
Tip revision: a54bf1cd68f86a36a1520abb2ebef860e2e32fba authored by Ron Burkey on 28 May 2023, 16:38:32 UTC
Removed some debugging statements from the LVDC assembler.
Tip revision: a54bf1c
Dockerfile.dev
FROM jlawton/virtualagc
MAINTAINER Jim Lawton

# Use this to clone directly from Github.
#RUN git clone https://github.com/rburkey2005/virtualagc

# Use this to build a copy of the current directory. 
RUN mkdir /virtualagc
COPY . /virtualagc

RUN cd virtualagc && make clean
RUN cd virtualagc && DEV_BUILD=yes make yaLEMAP yaAGC yaAGS yaYUL missions corediffs
back to top