Mercurial > libavutil.hg
comparison Makefile @ 27:3e908b79ab11 libavutil
Simplify header installation.
author | diego |
---|---|
date | Sat, 11 Feb 2006 19:30:55 +0000 |
parents | 254a8d098e95 |
children | 07191bec33a2 |
comparison
equal
deleted
inserted
replaced
26:254a8d098e95 | 27:3e908b79ab11 |
---|---|
74 | 74 |
75 install-lib-static: $(LIB) | 75 install-lib-static: $(LIB) |
76 install -m 644 $(LIB) "$(libdir)" | 76 install -m 644 $(LIB) "$(libdir)" |
77 | 77 |
78 install-headers: | 78 install-headers: |
79 mkdir -p "$(prefix)/include/ffmpeg" | 79 install -m 644 avutil.h common.h mathematics.h integer.h \ |
80 install -m 644 $(SRC_PATH)/libavutil/avutil.h \ | 80 rational.h intfloat_readwrite.h "$(incdir)" |
81 $(SRC_PATH)/libavutil/common.h \ | 81 install -m 644 $(SRC_PATH)/libavutil.pc "$(libdir)/pkgconfig" |
82 $(SRC_PATH)/libavutil/mathematics.h \ | |
83 $(SRC_PATH)/libavutil/integer.h \ | |
84 $(SRC_PATH)/libavutil/rational.h \ | |
85 $(SRC_PATH)/libavutil/intfloat_readwrite.h \ | |
86 "$(prefix)/include/ffmpeg" | |
87 install -d "$(libdir)/pkgconfig" | |
88 install -m 644 ../libavutil.pc "$(libdir)/pkgconfig" | |
89 | 82 |
90 # | 83 # |
91 # include dependency files if they exist | 84 # include dependency files if they exist |
92 # | 85 # |
93 ifneq ($(wildcard .depend),) | 86 ifneq ($(wildcard .depend),) |