-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathCreateMakeFile.sh
More file actions
executable file
·289 lines (248 loc) · 5.74 KB
/
CreateMakeFile.sh
File metadata and controls
executable file
·289 lines (248 loc) · 5.74 KB
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
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
#!/bin/bash
BOLD="\033[1m"
RESET="\033[0m"
HelpMenu="
╭───────────────────────────────╮
│ --== ${BOLD}CreateMakeFiles${RESET} ==-- │
╰───────────────────────────────╯
CreateMakeFiles is a bash script used for automatic creating of a Makefile.
Supported languages: C, C++, Java
This info:
CreateMakeFiles -h
Usage:
CreateMakeFile <c | cpp | java> [--flag \"value\", ...]
Flags:
-n | --name ..... enter custom Project name
-a | --author ... enter custom Author
-b | --bin ...... enter custom Binary Filename
Imporant:
When using multiple word value use quotation marks.
To always use custom values create:
~/.config/CreateMakeFiles/CreateMakeFiles.conf
- the first line MUST contain 'config=true'
Config syntax:
ProjectName=<custom-project-name> #Set ProjectName (Yes, comments work.)
Author=<custom-author>
BinFilename=<custom-bin-filename>
"
if [[ $# = 0 ]]; then # 0 ARGS
echo -e "$HelpMenu"
exit
fi
# 1 ARG
if [[ $1 = "-h" ]]; then # -h
echo -e "$HelpMenu"
exit
fi
Extension=$1 # Loads Extension from $1
case "$Extension" in
"c")
echo "Creating Makefile for C project..."
;;
"cpp")
echo "Creating Makefile for C++ project..."
;;
"java")
echo "Creating Makefile for Java project..."
;;
*)
echo "Extension $Extension is not supported!"
echo "Aborting."
exit
;;
esac
. ~/.config/CreateMakeFiles/CreateMakeFiles.conf # Load a config
# Check if config was loaded
if ! [ -z config ]; then
echo "Config was found..."
fi
# Load other args
while [[ $# > 0 ]]; do # 2+ ARGS
shift # Extension is not $1. Working with other flags
case "$1" in
"-n" | "--name")
ProjectName=$2
echo "Project name: $ProjectName"
;;
"-a" | "--author")
Author=$2
echo "Author: $Author"
;;
"-b" | "--bin")
BinFilename=$2
echo "Bin filename: $BinFilename"
;;
*) ;;
esac
done
# Set Defaults Not if not overwritten by config
# General vars
if [[ -z $Author ]]; then # Set default Author
Author=$(whoami)
echo "Author: $Author"
fi
if [[ -z $ProjectName ]]; then # Set default ProjectName
ProjectName=$(basename "$(pwd)")
echo "Project name: $ProjectName"
fi
if [[ -z $date ]]; then
date="$(date)"
echo "Date: $date"
fi
# Language specific vars
case "$Extension" in
"c")
if [[ -z $C_binExt ]]; then # Set default C bin Extension
C_binExt=".bin"
fi
if [[ -z $BinFilename ]]; then
BinFilename="\$(NAME)$C_binExt"
echo "Binary file: $BinFilename"
fi
if [[ -z $CC ]]; then
CC="gcc"
echo "Compiler: $CC"
fi
if [[ -z CFlags ]]; then
CFlags="-std=c99 -pedantic -Wall -g"
fi
if [[ -z $Compile ]]; then
Compile="\$(CC) \$(CFLAGS) \$(SRCS) -o \$(BIN)"
fi
if [[ -z $Run ]]; then
Run="./\$(BIN)"
fi
;;
"cpp")
if [[ -z $Cpp_binExt ]]; then # Set default Cpp bin Extension
Cpp_binExt=".bin"
fi
if [[ -z $BinFilename ]]; then
BinFilename="\$(NAME)$Cpp_binExt"
echo "Binary file: $BinFilename"
fi
if [[ -z $CC ]]; then
CC="g++"
echo "$CC"
fi
if [[ -z CFlags ]]; then
CFlags="-g -std=c++14 -Wall -Werror -pedantic"
fi
if [[ -z $Compile ]]; then
Compile="\$(CC) \$(CFLAGS) \$(SRCS) -o \$(BIN)"
fi
if [[ -z $Run ]]; then
Run="./\$(BIN)"
fi
;;
"java")
if [[ -z $Java_binExt ]]; then # Set default Java bin Extension
Java_binExt=".class"
fi
if [[ -z $BinFilename ]]; then
BinFilename="Main$Java_binExt"
fi
if [[ -z $CC ]]; then
CC="javac"
fi
if [[ -z $Compile ]]; then
Compile="\$(CC) \$(SRCS)"
fi
if [[ -z $Run ]]; then
Run="java \$(basename \$(BIN))"
fi
;;
*)
echo "ERROR: Extension $Extension is not supported..."
echo "Aborting."
;;
esac
# End of defaults
# Load files
for i in *.$Extension; do # Nacteni source files do array
[ -f "$i" ] || break
SourceFiles+=("$i")
done
if [[ ${#SourceFiles[@]} == 0 ]]; then # If no source files are found
echo "ERROR: No files in $pwd with extension .$Extension..."
echo "Aborting."
exit
fi
echo "Found Source files: ${SourceFiles[*]}"
# Load header files if c/cpp
case "$Extension" in
"c" | "cpp")
for j in *.h; do # Nacteni header files do array
[ -f "$j" ] || break
HeaderFiles+=("$j")
done
echo "Found Header files: ${HeaderFiles[*]}"
;;
*) ;;
esac
# End of Loading files
# TODO: In Run add prerequisities. Make a var with the file that is outputted by the compiler and a var with name of the file that is run
echo "# Projekt: $ProjectName
# Autor: $Author
# Project name
NAME = $ProjectName
# Binary filename (also target)
BIN = $BinFilename
# Source files
SRCS = ${SourceFiles[*]}
# Modules
MODULES = ${HeaderFiles[*]}
# Files that are put into archives
ARCHIVE_FILES = \$(SRCS) \$(MODULES) Makefile # Feel free to add additional files here
# Zip filename
ZIP=\$(NAME).zip
# Tar filename
TAR=\$(NAME).tar.gz
# Compiler
CC = $CC
# Compile flags
CFLAGS = $CFlags
# Compilation command
COMPILATION=$Compile
# Compile and run
.PHONY: compileAndRun
compileAndRun: \$(SRCS)
\$(COMPILATION)
$Run
# Run the target
.PHONY: run
run:
$Run
.PHONY: compile
compile: \$(BIN)
# Compile target
\$(BIN): \$(SRCS)
\$(COMPILATION)
# Archive files into zip
.PHONY:
zip:
zip \$(ZIP) \$(ARCHIVE_FILES)
# Archive files into tar.gz
.PHONY:
tar:
tar -czvf \$(TAR) \$(ARCHIVE_FILES)
# Remove bin file
.PHONY: rm-bin
rm-bin: \$(BIN)
rm -f \$(BIN)
# Remove zip archive
.PHONY: rm-zip
rm-zip: zip
rm \$(ZIP)
# Remove tar.gz archive
.PHONY: rm-tar
rm-tar: tar
rm \$(TAR)
.PHONY: clean
clean: rm-tar rm-zip rm-bin
" >Makefile
if [ -f Makefile ]; then
echo "Makefile has been created."
exit
fi
echo "ERROR: Makefile has not been created."