d2798fc8cd
and VOB/IFO files processor
27 lines
864 B
Text
27 lines
864 B
Text
--- Makefile.orig Mon Jan 2 17:38:10 2006
|
|
+++ Makefile Mon Jan 2 17:42:28 2006
|
|
@@ -1,10 +1,10 @@
|
|
-CFLAGS := -W -Wall -O2 -D__UNIX__
|
|
-CC := gcc
|
|
+CFLAGS += -D__UNIX__
|
|
|
|
|
|
### Sources
|
|
|
|
SOURCE_FILES=file_io.h file_io.c in_buffer.h in_buffer.c parse_ifo.h parse_ifo.c s_types.h main.c vstrip.h vstrip.c
|
|
+SOURCE_FILES+=dvd2avi_plugin.c
|
|
|
|
### Objects and executables
|
|
|
|
@@ -27,8 +27,9 @@
|
|
|
|
### Details
|
|
|
|
-vstrip : file_io.o in_buffer.o main.o parse_ifo.o vstrip.o
|
|
- $(CC) -g file_io.o in_buffer.o main.o parse_ifo.o vstrip.o -o vstrip
|
|
+vstrip : file_io.o in_buffer.o main.o parse_ifo.o vstrip.o \
|
|
+ dvd2avi_plugin.o
|
|
+ $(CC) $(LDFLAGS) file_io.o in_buffer.o main.o parse_ifo.o vstrip.o dvd2avi_plugin.o -o vstrip
|
|
file_io.o : s_types.h file_io.h file_io.c
|
|
in_buffer.o : s_types.h file_io.h in_buffer.h in_buffer.c
|
|
main.o : s_types.h file_io.h vstrip.h main.c
|