skip to Main Content

makefile syntax error while removing files – Ubuntu

I am trying to make a make file function that cleans everything instead of 4 specific files: all: clean compile run compile: main.c util.c util.h @echo "-------------------------------------------" @echo "Compiling..." @gcc -o test main.c util.c run: @echo "-------------------------------------------" @echo "Running the…

VIEW QUESTION

Visual Studio Code – make: function, script file, or operable program. Check the spelling of the name, or if a path was included, verify that the path is correct and try

I am learning Go lang by this video tutorial https://youtu.be/LOn1GUsjOF4?t=163 . My environment: Windows 11 x64, Visual Studio Code 1.75.1 (latest), Go v1.20.1 (latest). File main.go package main import "fmt" func main() { fmt.Println("We good") } File go.mod module newsfeeder…

VIEW QUESTION
Back To Top
Search