Mercurial > libavformat.hg
comparison Makefile @ 230:9f4f4ca9f7b5 libavformat
simpler strptime - added os_support.[ch] - moved localtime_r to os_support.c
author | bellard |
---|---|
date | Mon, 08 Sep 2003 21:20:55 +0000 |
parents | d0332f4362b6 |
children | b99548e3ab84 |
comparison
equal
deleted
inserted
replaced
229:b0771ae979e3 | 230:9f4f4ca9f7b5 |
---|---|
6 | 6 |
7 VPATH=$(SRC_PATH)/libavformat | 7 VPATH=$(SRC_PATH)/libavformat |
8 | 8 |
9 CFLAGS= $(OPTFLAGS) -Wall -g -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE | 9 CFLAGS= $(OPTFLAGS) -Wall -g -I.. -I$(SRC_PATH) -I$(SRC_PATH)/libavcodec -DHAVE_AV_CONFIG_H -D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -D_GNU_SOURCE |
10 | 10 |
11 OBJS= utils.o cutils.o allformats.o | 11 OBJS= utils.o cutils.o os_support.o allformats.o |
12 PPOBJS= | 12 PPOBJS= |
13 | 13 |
14 # mux and demuxes | 14 # mux and demuxes |
15 OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o raw.o rm.o \ | 15 OBJS+=mpeg.o mpegts.o mpegtsenc.o ffm.o crc.o img.o raw.o rm.o \ |
16 avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dvcore.o dv.o \ | 16 avienc.o avidec.o wav.o swf.o au.o gif.o mov.o mpjpeg.o dvcore.o dv.o \ |
28 # image formats | 28 # image formats |
29 OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o | 29 OBJS+= pnm.o yuv.o png.o jpeg.o gifdec.o |
30 # file I/O | 30 # file I/O |
31 OBJS+= avio.o aviobuf.o file.o | 31 OBJS+= avio.o aviobuf.o file.o |
32 OBJS+= framehook.o | 32 OBJS+= framehook.o |
33 | |
34 ifeq ($(BUILD_STRPTIME),yes) | |
35 OBJS+= strptime.o | |
36 endif | |
37 | |
38 ifeq ($(BUILD_LOCALTIME_R),yes) | |
39 OBJS+= localtime_r.o | |
40 endif | |
41 | 33 |
42 ifeq ($(CONFIG_VIDEO4LINUX),yes) | 34 ifeq ($(CONFIG_VIDEO4LINUX),yes) |
43 OBJS+= grab.o | 35 OBJS+= grab.o |
44 endif | 36 endif |
45 | 37 |