Commit a02d94e 1 parent 2e8c3d5 commit a02d94e Copy full SHA for a02d94e
File tree 1 file changed +17
-10
lines changed
1 file changed +17
-10
lines changed Original file line number Diff line number Diff line change @@ -22,14 +22,26 @@ build:
22
22
clean :
23
23
echo Deleting the binaries....
24
24
rm ${BUILDDIR} /*
25
- rm usrData/*
26
- rm appData/*
27
-
25
+ rm ffmpeg-coder/usr/bin/ffmpeg-coder
26
+
28
27
.PHONY : run
29
28
run :
30
- echo " Running the built program...."
29
+ echo Running the built program....
31
30
./${BUILDDIR} /${APPNAME} .o
32
31
32
+ .PHONY : dir
33
+ dir :
34
+ echo Creating directories.....
35
+ mkdir bin
36
+
37
+ .PHONY : debpackage
38
+ debpackage : build
39
+ echo Creating the debian package of ffmpeg-coder
40
+ mv bin/ffmpeg-coder.o bin/ffmpeg-coder
41
+ cp bin/ffmpeg-coder ffmpeg-coder/usr/bin/
42
+ dpkg-deb -v --build ffmpeg-coder bin
43
+ echo The deb package has been created in the bin folder
44
+
33
45
34
46
# Windows Configs for make
35
47
.PHONY : winbuild
@@ -38,10 +50,5 @@ winbuild:
38
50
39
51
.PHONY : winrun
40
52
winrun :
41
- echo " Running the built program...."
53
+ echo Running the built program....
42
54
./${BUILDDIR} /${APPNAME} .exe
43
-
44
- .PHONY : dir
45
- dir :
46
- echo Creating directories.....
47
- mkdir bin usrData appData
You can’t perform that action at this time.
0 commit comments