mirror of
https://projects.vdr-developer.org/git/vdr-plugin-streamdev.git
synced 2023-10-10 19:16:51 +02:00
89735cbd95
- 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)
26 lines
467 B
Makefile
26 lines
467 B
Makefile
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
|
|
SRC = $(wildcard *.c)
|
|
|
|
DESTDIR = /usr/local
|
|
|
|
.PHONY: clean
|
|
|
|
clean:
|
|
- rm -f *.o *~ *.a .depend
|
|
|
|
libdvbmpegtools.a: $(OBJS)
|
|
ar -rcs libdvbmpegtools.a $(OBJS)
|
|
|
|
%.o: %.c
|
|
$(CC) -c $(CFLAGS) $(INCS) $(DEFINES) $<
|
|
|
|
.depend:
|
|
$(CXX) $(DEFINES) $(MFLAG) $(SRC) $(INCS)> .depend
|
|
|
|
|
|
|
|
-include .depend
|