blob: 82ac68b9d74920f0e314348a7dc877f18732534e [file] [log] [blame]
Constantin Kaplinsky47ed8d32004-10-08 09:43:57 +00001
2all::
3 @subdirs="$(SUBDIRS)"; for d in $$subdirs; do (cd $$d; $(MAKE) $@) || exit 1; done
4
5clean::
6 @subdirs="$(SUBDIRS)"; for d in $$subdirs; do (cd $$d; $(MAKE) $@) || exit 1; done
7
8clean::
9 rm -f $(program) $(library) *.o
10
11SHELL = @SHELL@
12top_srcdir = @top_srcdir@
Peter Åstrand42e4bf02005-01-24 08:04:33 +000013top_builddir = @top_builddir@
Constantin Kaplinsky47ed8d32004-10-08 09:43:57 +000014@SET_MAKE@
15CC = @CC@
16CFLAGS = @CFLAGS@ $(DIR_CFLAGS)
17CCLD = $(CC)
18CXX = @CXX@
19CXXFLAGS = @CXXFLAGS@
20CXXLD = $(CXX)
21CPPFLAGS = @CPPFLAGS@
22DEFS = @DEFS@
23ALL_CPPFLAGS = $(CPPFLAGS) $(DEFS) $(DIR_CPPFLAGS)
24LIBS = @LIBS@
25LDFLAGS = @LDFLAGS@
26RANLIB = @RANLIB@
27AR = ar cq
28
29.SUFFIXES:
30.SUFFIXES: .cxx .c .o
31
32.c.o:
33 $(CC) $(ALL_CPPFLAGS) $(CFLAGS) -c $<
34
35.cxx.o:
36 $(CXX) $(ALL_CPPFLAGS) $(CXXFLAGS) -c $<