comparison libvo/Makefile @ 1010:6d3a6d42c831

dependency stuff fixed
author arpi_esp
date Mon, 04 Jun 2001 19:33:28 +0000
parents 91087aaea5c7
children b36fb1ae4b53
comparison
equal deleted inserted replaced
1009:c51d7e4853d6 1010:6d3a6d42c831
14 # .PHONY: all clean 14 # .PHONY: all clean
15 15
16 .c.o: 16 .c.o:
17 $(CC) -c $(CFLAGS) -o $@ $< 17 $(CC) -c $(CFLAGS) -o $@ $<
18 18
19 $(LIBNAME): .depend $(OBJS) 19 $(LIBNAME): $(OBJS)
20 $(AR) r $(LIBNAME) $(OBJS) 20 $(AR) r $(LIBNAME) $(OBJS)
21 21
22 all: $(LIBNAME) 22 all: $(LIBNAME)
23 23
24 clean: 24 clean:
26 26
27 distclean: 27 distclean:
28 rm -f Makefile.bak *.o *.a *~ .depend 28 rm -f Makefile.bak *.o *.a *~ .depend
29 29
30 dep: depend 30 dep: depend
31 depend: .depend
32 31
33 .depend: Makefile config.mak ../config.mak ../config.h 32 depend:
34 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend 33 $(CC) -MM $(CFLAGS) $(SRCS) 1>.depend
35 34
36 # 35 #
37 # include dependency files if they exist 36 # include dependency files if they exist
38 # 37 #