Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion axevent/send_event/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ CFLAGS += -Wall \
all: $(PROG)

clean:
rm -f $(PROG) *.o *.eap *_LICENSE.txt
rm -f $(PROG) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp*
2 changes: 1 addition & 1 deletion axevent/subscribe_to_event/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ CFLAGS += -Wall \
all: $(PROG)

clean:
rm -f $(PROG) *.o *.eap *_LICENSE.txt
rm -f $(PROG) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp*
2 changes: 1 addition & 1 deletion axevent/subscribe_to_events/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -20,4 +20,4 @@ CFLAGS += -Wall \
all: $(PROG)

clean:
rm -f $(PROG) *.o *.eap *_LICENSE.txt
rm -f $(PROG) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp*
2 changes: 1 addition & 1 deletion container-example/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
all:

clean:
rm -f *.eap* alpine.tar
rm -f *.eap* *_LICENSE.txt package.conf* param.conf tmp* alpine.tar
2 changes: 1 addition & 1 deletion curl-openssl/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ $(PROG1): $(OBJS1)
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@

clean:
rm -f $(PROGS) *.o *.eap *_LICENSE.txt package.conf* param.conf cacert.pem
rm -f $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp* cacert.pem
4 changes: 2 additions & 2 deletions hello-world/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -19,8 +19,8 @@ CFLAGS += -Wall \
all: $(PROGS)

$(PROG1): $(OBJS1)
$(CC) $^ $(CFLAGS) $(LIBS) -o $@
$(CC) $^ $(CFLAGS) -o $@
$(STRIP) $@

clean:
rm -f $(PROGS) *.o core *.eap
rm -f $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp*
2 changes: 1 addition & 1 deletion licensekey/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ $(PROGS): $(OBJS)
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@

clean:
rm -f $(PROGS) *.o
rm -f $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp*
2 changes: 1 addition & 1 deletion message-broker/consume-scene-metadata/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ $(PROG1): $(OBJS1)
$(STRIP) $@

clean:
rm -rf $(PROGS) $(DEBUG_DIR) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp*
rm -rf $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp* $(DEBUG_DIR)
2 changes: 1 addition & 1 deletion object-detection-cv25/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ $(PROG1): $(OBJS1)
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@

clean:
rm -rf $(PROGS) *.o $(LIBDIR) *.eap* *_LICENSE.txt manifest.json package.conf* param.conf
rm -rf $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp* $(LIBDIR) manifest.json
2 changes: 1 addition & 1 deletion object-detection/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ $(PROG1): $(OBJS1)
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@

clean:
rm -rf $(PROGS) *.o $(LIBDIR) *.eap* *_LICENSE.txt manifest.json package.conf* param.conf
rm -rf $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp* $(LIBDIR) manifest.json
2 changes: 1 addition & 1 deletion remote-debug-example/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ $(PROG1): $(OBJS1)
$(STRIP) $@

clean:
rm -rf $(PROGS) *.o core *.eap* *_LICENSE.txt debug tmp* package.conf* param.conf
rm -rf $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp* $(DEBUG_DIR) core
2 changes: 1 addition & 1 deletion reproducible-package/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -37,4 +37,4 @@ $(PROG1): $(OBJS1)
$(STRIP) $@

clean:
rm -f $(PROGS) *.o core *.conf* *.eap* *_LICENSE.txt
rm -f $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp* *.conf*
8 changes: 4 additions & 4 deletions using-opencv/app/Makefile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
TARGET = opencv_app
PROGS = opencv_app
OBJECTS = $(wildcard *.cpp)

PKGS = gio-2.0 gio-unix-2.0 vdostream
Expand All @@ -13,11 +13,11 @@ LDLIBS += -lm -lopencv_video -lopencv_imgproc -lopencv_core -lpthread

.PHONY: all clean

all: $(TARGET)
all: $(PROGS)

$(TARGET): $(OBJECTS)
$(PROGS): $(OBJECTS)
$(CXX) $(CXXFLAGS) $(LDFLAGS) $(LDLIBS) $^ -o $@ ; \
$(STRIP) --strip-unneeded $@

clean:
$(RM) *.o $(TARGET) *.eap* *_LICENSE.txt pa*
rm -f $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp*
2 changes: 1 addition & 1 deletion utility-libraries/custom_lib_example/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,4 @@ $(PROG1): $(OBJS1)
$(CC) $(CFLAGS) $(LDFLAGS) $(LDLIBS) $^ $(LIBS) $(LDLIBS) $(SHLIBS) -o $@

clean:
rm -f $(PROGS) *.o *.eap *_LICENSE.txt package.conf* param.conf
rm -f $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp*
2 changes: 1 addition & 1 deletion utility-libraries/openssl_curl_example/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -45,4 +45,4 @@ $(PROG1): $(OBJS1)
$(CC) $(CFLAGS) $(LDFLAGS) $(LDLIBS) $^ $(LIBS) -o $@

clean:
rm -f $(PROGS) *.o *.eap *_LICENSE.txt package.conf* param.conf
rm -f $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp*
2 changes: 1 addition & 1 deletion vapix/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -29,4 +29,4 @@ $(PROG1): $(OBJS1)
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@

clean:
rm -rf $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp*
rm -f $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp*
2 changes: 1 addition & 1 deletion vdo-larod/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -28,4 +28,4 @@ $(PROG1): $(OBJS1)
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@

clean:
rm -f $(PROGS) *.o *.eap
rm -f $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp* manifest.json
2 changes: 1 addition & 1 deletion vdo-opencl-filtering/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -26,4 +26,4 @@ $(PROG1): $(OBJS1)
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LIBS) $(LDLIBS) -o $@

clean:
rm -f $(PROGS) *.o *.eap
rm -f $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp*
2 changes: 1 addition & 1 deletion web-server-using-fastcgi/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -31,4 +31,4 @@ $(PROG1): $(OBJS1)
$(CC) $(CFLAGS) $(LDFLAGS) $(LDLIBS) $^ -o $@

clean:
rm -f $(PROGS) *.o *.eap* pa* *_LICENSE.txt
rm -f $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp*
2 changes: 1 addition & 1 deletion web-server/app/Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -34,4 +34,4 @@ $(PROG1): $(OBJS1)
$(CC) $(CFLAGS) $(LDFLAGS) $^ $(LDLIBS) -o $@

clean:
rm -rf $(PROGS) *.o $(LIBDIR) $(HTMLDIR) *.eap* *_LICENSE.txt package.conf* param.conf tmp*
rm -rf $(PROGS) *.o *.eap* *_LICENSE.txt package.conf* param.conf tmp* $(LIBDIR) $(HTMLDIR)