Mercurial > libavformat.hg
comparison Makefile @ 813:6d6973a9fd92 libavformat
compiling using nonstd include/library locations / add LDFLAGS to a few places patch by (Niki W. Waibel - nikiwaibel)
author | michael |
---|---|
date | Mon, 11 Jul 2005 00:15:37 +0000 |
parents | c69cd990c32f |
children | b1d7ee1c792d |
comparison
equal
deleted
inserted
replaced
812:9ace3075f33a | 813:6d6973a9fd92 |
---|---|
99 $(SLIB): $(OBJS) | 99 $(SLIB): $(OBJS) |
100 ifeq ($(CONFIG_WIN32),yes) | 100 ifeq ($(CONFIG_WIN32),yes) |
101 $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS) | 101 $(CC) $(SHFLAGS) -Wl,--output-def,$(@:.dll=.def) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS) |
102 -lib /machine:i386 /def:$(@:.dll=.def) | 102 -lib /machine:i386 /def:$(@:.dll=.def) |
103 else | 103 else |
104 $(CC) $(SHFLAGS) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS) | 104 $(CC) $(SHFLAGS) $(LDFLAGS) -o $@ $(OBJS) $(PPOBJS) $(AVCLIBS) $(EXTRALIBS) |
105 endif | 105 endif |
106 | 106 |
107 depend: $(SRCS) | 107 depend: $(SRCS) |
108 $(CC) -MM $(CFLAGS) $^ 1>.depend | 108 $(CC) -MM $(CFLAGS) $^ 1>.depend |
109 | 109 |