Search
 
SCRIPT & CODE EXAMPLE
 

SHELL

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 :: wsl 2 installation 
Shell :: how to move to directories in command prompt 
Shell :: git logline 
Shell :: what is bin/bash 
Shell :: how to delete all ufw rules 
Shell :: git assume undo unchanged 
Shell :: how to convert colab notebook to html 
Shell :: adding this directory to path mac 
Shell :: store environment variables firebase functions 
Shell :: how to deploy heroku app 
Shell :: list groups linux for user 
Shell :: clear command in linux 
Shell :: assign permission to files and folder ubuntu separate 
Shell :: docker compose volumes 
Shell :: zip folder ssh 
Shell :: bash get files older than 
Shell :: script for restart redis service automatically 
Shell :: git lfs all files in folder 
Shell :: write a script to shutdown at a time in linux 
Shell :: check memcached status 
Shell :: install docker on linux 
Shell :: kills a process on port 
Shell :: ubuntu upgrade libstdc++ 
Shell :: installing kubernetes on ubuntu 20.04 
Shell :: create dektop file in ubuntu 
Shell :: how to install programs in ubuntu using terminal 
Shell :: epoch bash 
Shell :: monit network request in ubuntu 
Shell :: cp verbose progress 
Shell :: git setup upstream 
ADD CONTENT
Topic
Content
Source link
Name
9+7 =