mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 17:16:51 +00:00
- resurrected clients "Suspend Server" menu item as its mainmenu entry
- dropped unused code for remote timers/recordings on client side - dropped unused files client/{assembler,menu,remote}.[hc] - dropped unused files in libdvbmpeg (reported by tobi)
This commit is contained in:
@@ -1,14 +1,12 @@
|
||||
INCS = -I.
|
||||
CFLAGS = -g -Wall -O2 -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_LARGEFILE64_SOURCE -fPIC
|
||||
MFLAG = -M
|
||||
OBJS = ctools.o ringbuffy.o remux.o transform.o cpptools.o
|
||||
OBJS = ctools.o ringbuffy.o remux.o transform.o
|
||||
SRC = $(wildcard *.c)
|
||||
CPPSRC = $(wildcard *.cpp)
|
||||
CSRC = $(wildcard *.cc)
|
||||
|
||||
DESTDIR = /usr/local
|
||||
|
||||
.PHONY: depend clean install uninstall
|
||||
.PHONY: clean
|
||||
|
||||
clean:
|
||||
- rm -f *.o *~ *.a .depend
|
||||
@@ -16,17 +14,11 @@ clean:
|
||||
libdvbmpegtools.a: $(OBJS)
|
||||
ar -rcs libdvbmpegtools.a $(OBJS)
|
||||
|
||||
%.o: %.cc
|
||||
$(CXX) -c $(CFLAGS) $(INCS) $(DEFINES) $<
|
||||
|
||||
%.o: %.cpp
|
||||
$(CXX) -c $(CFLAGS) $(INCS) $(DEFINES) $<
|
||||
|
||||
%.o: %.c
|
||||
$(CC) -c $(CFLAGS) $(INCS) $(DEFINES) $<
|
||||
|
||||
.depend:
|
||||
$(CXX) $(DEFINES) $(MFLAG) $(SRC) $(CSRC) $(CPPSRC) $(INCS)> .depend
|
||||
$(CXX) $(DEFINES) $(MFLAG) $(SRC) $(INCS)> .depend
|
||||
|
||||
|
||||
|
||||
|
Reference in New Issue
Block a user