-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathMake.common
27 lines (23 loc) · 963 Bytes
/
Make.common
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
# ====================================================================
#
# Filename: Make.common
#
# Description: Definition of common variables used in Makefile
#
# Created: Saturday 23 March 2013 11:15:42 IST
# Compiler: g++
#
# Author: Mandeep Kaur, meghasimak@gmail.com
# License: GNU General Public License
# Copyright: Copyright (c) 2013, Great Developers
# https://github.com/GreatDevelopers
#
# ====================================================================
# Variables for compilation of c/c++ files
CXX = g++ # Compiler
CFLAG = -c # Compilation flag
OFLAG = -o # O/p Flag
# Variable for filenames
HEADER = header.h # Header file name
MAIN = main.cpp # Filename having main method
OUTPUT = main # Executabl file name