skip to Main Content

Makefile unable to find ./configure inside docker

I have below dockerfile FROM mcr.microsoft.com/dotnet/runtime:8.0 AS base RUN apt-get update RUN apt-get install -y libmotif-dev build-essential COPY . /usr/src/myapp COPY oracle-outside-in-content-access-8.5.7.0.0-linux-x86-64/redist /usr/src/myapp/oracle-outside-in-content-access-8.5.7.0.0-linux-x86-64/sdk/demo WORKDIR /usr/src/myapp/oracle-outside-in-content-access-8.5.7.0.0-linux-x86-64/sdk/samplecode/unix/ RUN make WORKDIR /app RUN adduser -u 5678 --disabled-password --gecos "" appuser && chown -R…

VIEW QUESTION

Visual Studio Code Makefile extension not executing make as expected

Executing make command on this Makefile compiles as expected: #SHELL = /bin/sh APP:= basic-tutorial-2 APP_INSTALL_DIR?= $(HOME)/Projects/test-gstreamer-2/build/bin CC:=/usr/bin/aarch64-linux-gnu-gcc SRCS:= $(wildcard *.c) INCS:= $(wildcard *.h) PKGS:= gstreamer-1.0 OBJS:= $(SRCS:.c=.o) CFLAGS:= $(shell pkg-config --cflags $(PKGS)) LIBS:= $(shell pkg-config --libs $(PKGS)) #$(info $$CFLAGS is…

VIEW QUESTION
Back To Top
Search