Skip to content

Commit 59f8b41

Browse files
committed
Changelog:
* Fixed syntax error in nmly.h. * Moved core files to src folder.
1 parent 3c5a467 commit 59f8b41

File tree

6 files changed

+10
-14
lines changed

6 files changed

+10
-14
lines changed

.gitignore

Lines changed: 2 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,9 +1,5 @@
11
.vscode/
22
nmly.exe
33
nmly
4-
helper.o
5-
nmly.o
6-
.nmly.c.swp
7-
.nmly.h.swp
8-
.helper.c.swp
9-
.helper.h.swp
4+
*.o
5+
*.swp

Makefile

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -3,14 +3,14 @@ CFLAGS=-ansi
33

44
all: nmly
55

6-
nmly: nmly.o helper.o
7-
gcc -v -o nmly helper.o nmly.o
6+
nmly: src/nmly.o src/helper.o
7+
gcc -v -o nmly src/helper.o src/nmly.o
88

9-
helper.o: helper.c
10-
gcc -v -c helper.c
9+
helper.o: src/helper.c
10+
gcc -v -c src/helper.c
1111

12-
nmly.o: nmly.c
13-
gcc -v -c nmly.c
12+
nmly.o: src/nmly.c
13+
gcc -v -c src/nmly.c
1414

1515
clean:
16-
rm *.o nmly
16+
rm src/*.o nmly
File renamed without changes.
File renamed without changes.
File renamed without changes.

nmly.h renamed to src/nmly.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@
3232
"-f --folders Apply changes to the folders name too\n" \
3333
"-h --help Get help and information\n" \
3434
"-l --locale Process special characters (like latin ones)\n" \
35-
"-nv --no-verbose No verbose mode (no files will be listed)"\n \
35+
"-nv --no-verbose No verbose mode (no files will be listed)\n" \
3636
"-p --preview Show the changes without applying them\n" \
3737
"-r --recursive Work recursively\n" \
3838
"-s --size [size] Filter files based on theirs size (+/-)(g/m/k)\n" \

0 commit comments

Comments
 (0)