Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

how to run makefile in windows

// Install Chocolatey

// Install cygwin
choco install make --source=cygwin

// add variable to path
"C:	oolscygwinin"
Comment

how to make makefile

# !!! DON'T FORGET TO REPLACE ALL SPACEBAR TO TAB BEFORE EACH "$(CC)" AND BEFORE "rm"

#variable declaration

CCFLAGS = -Wall
CC = gcc

# fordítási szabályok 

example : help.o example.o
	$(CC) help.o example.o -o example   
               
help.o : help.c date.h help.h
	$(CC) help.c -c $(CCFLAGS)

example.o : example.c date.h help.h
	$(CC) example.c -c $(CCFLAGS)

# delete commands  
       
.PHONY : clean 
clean : 
	rm -f example help.o example.o core *~
Comment

how to run makefile on windows

#include <iostream>

using namespace std;

int main() {
	cout << "If you are doing this with c/c++(mingw) try checking out this video! https://youtu.be/taCJhnBXG_w" << endl;
    return 0;
}
//LINK: https://youtu.be/taCJhnBXG_w
Comment

PREVIOUS NEXT
Code Example
Shell :: linux check core count 
Shell :: linux signals 
Shell :: powershell list special built in accounts 
Shell :: problem detected port 80 in use by unable to open process with pid 4 
Shell :: grep from file 
Shell :: s3 cli get list of files in folder 
Shell :: install bootstrap in angular 9 
Shell :: docker: Error response from daemon: pull access denied for 
Shell :: clear port by terminal 
Shell :: how to set default editor in git 
Shell :: Forgot the password I entered during postgres installation 
Shell :: How to find your ip on debian linux wsl 
Shell :: how to move a file in terminal 
Shell :: bash blackeye 
Shell :: sublime linux 
Shell :: stop venv 
Shell :: set origin url git 
Shell :: utserver: error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory 
Shell :: how to install the app of specific version in laravel 
Shell :: Delete all running and stopped containers 
Shell :: composer install linux 
Shell :: ubuntu check chmod 
Shell :: how to install powerline for ubuntu 
Shell :: git stash apply undo merge conflict 
Shell :: cmd shell 
Shell :: check my privilages ubuntu 
Shell :: install docker ubuntu 
Shell :: install ionic native run 
Shell :: git get commit author 
Shell :: functions in linux 
ADD CONTENT
Topic
Content
Source link
Name
3+7 =