Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

linux 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

PREVIOUS NEXT
Code Example
Shell :: how to check wsl version 
Shell :: Use slack in your terminal or CLI 
Shell :: deletes lines including regex match 
Shell :: merge master into local branch 
Shell :: add co author git 
Shell :: how disabled cors in chrome 
Shell :: vim quit 
Shell :: source bash_profile on startup mac 
Shell :: env file firebase 
Shell :: linux change uid 
Shell :: how to download a file from server 
Shell :: set default editor bash 
Shell :: bash read value 
Shell :: linux grep 
Shell :: remove a git remote origin 
Shell :: how to add ssh key to github 
Shell :: what is a shebang line 
Shell :: how to install and connect to ftp on ubuntu 18 
Shell :: docker push image 
Shell :: creating new repository 
Shell :: edit alias terminal 
Shell :: check for installed chaincode 
Shell :: git add existing proj to a new repo failed 
Shell :: Vim deleting all lines containing pattern 
Shell :: bash find text in all csv files 
Shell :: update snaps 
Shell :: poetry install packages 
Shell :: loading hard disk driver in rhel 8 
Shell :: mark raid drive as removed linux 
Shell :: aos animation vue 
ADD CONTENT
Topic
Content
Source link
Name
6+4 =