File tree Expand file tree Collapse file tree 2 files changed +7
-6
lines changed
Expand file tree Collapse file tree 2 files changed +7
-6
lines changed Original file line number Diff line number Diff line change 33.DS_Store
44
55# Video files
6- videos /** /* . *
6+ videos /** /*
77
88# Compiled Object files
9- build /** /* . *
9+ build /** /*
1010
1111# Precompiled Headers
1212* .gch
@@ -27,4 +27,4 @@ build/**/*.*
2727* .lib
2828
2929# Executables
30- bin /** /* . *
30+ bin /** /*
Original file line number Diff line number Diff line change @@ -4,16 +4,17 @@ LFLAGS+=`pkg-config --libs opencv`
44
55PROG =main
66OBJS =build/$(PROG ) .o
7+ EXEC =bin/$(PROG )
78
89.PHONY : all clean
910
1011build/% .o : src/% .cpp
11- $(CC ) -pthread -c -o $@ $(CFLAGS ) $<
12+ $(CC ) -pthread -c -o $@ $< $ (CFLAGS )
1213
1314$(PROG ) : $(OBJS )
14- $(CC ) -pthread -o bin/ $( PROG ) $(OBJS ) $(LFLAGS )
15+ $(CC ) -pthread -o $( EXEC ) $(OBJS ) $(LFLAGS )
1516
1617all : $(PROG )
1718
1819clean :
19- rm -f $(OBJS ) bin/ $( PROG )
20+ rm -f $(OBJS ) $( EXEC )
You can’t perform that action at this time.
0 commit comments