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 :: mac redis cli 
Shell :: how to resolve conflict in git 
Shell :: git log --oneline 
Shell :: git clean local branches 
Shell :: scp linux to mac 
Shell :: delete all lines in vi 
Shell :: GIT: create repo 
Shell :: linux ip route add 
Shell :: store environment variables in firebase functions 
Shell :: ngrok sing up 
Shell :: how to encrypt and decrypt a text file using openssl rsa public and private keys 
Shell :: rebase branch github 
Shell :: debian 10 sources 
Shell :: uname 
Shell :: bash ls sort by size 
Shell :: sed replace all until match in line 
Shell :: cannot reindex from a duplicate axis 
Shell :: get diff stash 
Shell :: copy files from windows to wsl2 ubuntu 
Shell :: To exclude directory with particluar pattern : 
Shell :: git remove file from repository 
Shell :: conda install throws ssl error 
Shell :: how to install node version to current folder only 
Shell :: vpn server setup 
Shell :: show pghba 
Shell :: how to downoad website using httrack in kali linux 
Shell :: install capacitor ionic 
Shell :: noetic catkin tools install 
Shell :: first time linux 
Shell :: how to install from a Linux terminal 
ADD CONTENT
Topic
Content
Source link
Name
3+4 =