comparison Makefile @ 3110:b090207c3d18 libavcodec

Separate header file installation from the general install target.
author diego
date Sat, 11 Feb 2006 17:44:06 +0000
parents 8fae2a0e1674
children 380d5841b346
comparison
equal deleted inserted replaced
3109:6ade7a72ae52 3110:b090207c3d18
501 501
502 fft-test: fft-test.o $(LIB) 502 fft-test: fft-test.o $(LIB)
503 $(CC) -o $@ $^ $(LIBAVUTIL) -lm 503 $(CC) -o $@ $^ $(LIBAVUTIL) -lm
504 504
505 ifeq ($(BUILD_SHARED),yes) 505 ifeq ($(BUILD_SHARED),yes)
506 install: all install-headers 506 install: all
507 ifeq ($(CONFIG_WIN32),yes) 507 ifeq ($(CONFIG_WIN32),yes)
508 install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)" 508 install $(INSTALLSTRIP) -m 755 $(SLIBNAME) "$(prefix)"
509 else 509 else
510 install -d $(libdir) 510 install -d $(libdir)
511 install $(INSTALLSTRIP) -m 755 $(SLIBNAME) \ 511 install $(INSTALLSTRIP) -m 755 $(SLIBNAME) \
521 endif 521 endif
522 else 522 else
523 install: 523 install:
524 endif 524 endif
525 525
526 installlib: all install-headers 526 installlib: all
527 install -m 644 $(LIB) "$(libdir)" 527 install -m 644 $(LIB) "$(libdir)"
528 ifeq ($(CONFIG_PP),yes) 528 ifeq ($(CONFIG_PP),yes)
529 $(MAKE) -C libpostproc $@ 529 $(MAKE) -C libpostproc $@
530 endif 530 endif
531 531