1
0
mirror of https://github.com/mpv-player/mpv synced 2024-12-09 16:36:15 +00:00
mpv/TOOLS/netstream/Makefile
gabucino dd4befd76f - Cleaned up the Makefile, added some *.o's
- Added some declarations of variable's in netstream.c

Patch by Anton Verburg <anton@frog.nl>


git-svn-id: svn://svn.mplayerhq.hu/mplayer/trunk@11965 b3059339-0415-0410-9bf9-f77b7e298cf2
2004-02-17 11:22:32 +00:00

39 lines
968 B
Makefile

MPROOT=../..
include $(MPROOT)/config.mak
INCLUDE = -I$(MPROOT) -I$(MPROOT)/loader $(EXTRA_INC)
CFLAGS = $(OPTFLAGS) $(INCLUDE)
.SUFFIXES: .c .cpp .o
# .PHONY: all clean
all: netstream
.c.o:
$(CC) -c $(CFLAGS) -o $@ $<
netstream: $(MPROOT)/libmpdemux/libmpdemux.a netstream.o
$(CC) $(CFLAGS) netstream.o -o netstream $(MPROOT)/libmpdemux/libmpdemux.a $(MPROOT)/libmpdvdkit2/libmpdvdkit.a $(MPROOT)/libmpcodecs/native/minilzo.o $(MPROOT)/libvo/aclib.o $(MPROOT)/libmpcodecs/img_format.o $(MPROOT)/libao2/afmt.o $(MPROOT)/m_option.o $(MPROOT)/m_struct.o $(MPROOT)/subreader.o $(MPROOT)/mp_msg.o $(MPROOT)/osdep/shmem.o $(MPROOT)/osdep/timer-*.o $(VORBIS_LIB) $(CDPARANOIA_LIB) -lpthread -lsmbclient -lungif
clean:
rm -f *.o *.a *~
distclean:
rm -f test Makefile.bak *.o *.a *~ .depend
dep: depend
depend:
$(CC) -MM $(CFLAGS) test.c $(SRCS) 1>.depend
#
# include dependency files if they exist
#
ifneq ($(wildcard .depend),)
include .depend
endif