66 lines
1.9 KiB
Makefile
Executable File
66 lines
1.9 KiB
Makefile
Executable File
###############################################################
|
|
#
|
|
# Purpose: Makefile for "M-JPEG Streamer"
|
|
# Author.: Tom Stoeveken (TST)
|
|
# Version: 0.3
|
|
# License: GPL
|
|
#
|
|
###############################################################
|
|
|
|
#CC = mips-linux-gcc -mips1
|
|
|
|
CFLAGS += -O2 -DLINUX -D_GNU_SOURCE -Wall
|
|
#CFLAGS += -O2 -DDEBUG -DLINUX -D_GNU_SOURCE -Wall
|
|
LFLAGS += -lpthread -ldl
|
|
|
|
APP_BINARY=mjpg_streamer
|
|
OBJECTS=mjpg_streamer.o utils.o
|
|
|
|
all: application plugins
|
|
|
|
clean:
|
|
make -C plugins/input_uvc $@
|
|
make -C plugins/input_testpicture $@
|
|
make -C plugins/output_file $@
|
|
make -C plugins/output_http $@
|
|
make -C plugins/output_autofocus $@
|
|
make -C plugins/input_gspcav1 $@
|
|
rm -f *.a *.o $(APP_BINARY) core *~ *.so *.lo
|
|
|
|
plugins: input_uvc.so output_file.so output_http.so input_testpicture.so output_autofocus.so input_gspcav1.so
|
|
|
|
application: $(APP_BINARY)
|
|
|
|
output_autofocus.so: mjpg_streamer.h utils.h
|
|
make -C plugins/output_autofocus all
|
|
cp plugins/output_autofocus/output_autofocus.so .
|
|
|
|
input_testpicture.so: mjpg_streamer.h utils.h
|
|
make -C plugins/input_testpicture all
|
|
cp plugins/input_testpicture/input_testpicture.so .
|
|
|
|
input_uvc.so: mjpg_streamer.h utils.h
|
|
make -C plugins/input_uvc all
|
|
cp plugins/input_uvc/input_uvc.so .
|
|
|
|
output_file.so: mjpg_streamer.h utils.h
|
|
make -C plugins/output_file all
|
|
cp plugins/output_file/output_file.so .
|
|
|
|
output_http.so: mjpg_streamer.h utils.h
|
|
make -C plugins/output_http all
|
|
cp plugins/output_http/output_http.so .
|
|
|
|
input_gspcav1.so: mjpg_streamer.h utils.h
|
|
make -C plugins/input_gspcav1 all
|
|
cp plugins/input_gspcav1/input_gspcav1.so .
|
|
|
|
$(APP_BINARY): mjpg_streamer.c mjpg_streamer.h mjpg_streamer.o utils.c utils.h utils.o
|
|
$(CC) $(CFLAGS) $(LFLAGS) $(OBJECTS) -o $(APP_BINARY)
|
|
chmod 755 $(APP_BINARY)
|
|
|
|
# useful to make a backup "make tgz"
|
|
tgz: clean
|
|
mkdir -p backups
|
|
tar czvf ./backups/mjpg_streamer_`date +"%Y_%m_%d_%H.%M.%S"`.tgz --exclude backups *
|