]> andersk Git - moira.git/blame_incremental - incremental/Makefile.in
Command line printer manipulation client, and build goo.
[moira.git] / incremental / Makefile.in
... / ...
CommitLineData
1# $Id$
2
3SHELL=/bin/sh
4@SET_MAKE@
5
6CC=@CC@
7CPPFLAGS=@CPPFLAGS@
8CFLAGS=@CFLAGS@
9DEFS=@DEFS@
10ALL_CFLAGS=$(CPPFLAGS) $(CFLAGS) $(DEFS)
11LDFLAGS=@LDFLAGS@
12LIBS=@LIBS@
13INSTALL=@INSTALL@
14INSTALL_PROGRAM=@INSTALL_PROGRAM@
15
16srcdir=@srcdir@
17VPATH=@srcdir@
18SRCTOP=@top_srcdir@
19BUILDTOP=..
20mrbindir=@mrbindir@
21
22SUBDIRS=@AFS_SUBDIRS@ @WINAD_SUBDIRS@
23
24.SUFFIXES: .pc
25
26.pc.c:
27 $(PRO_C) $(PRO_C_FLAGS) INAME=$<
28
29.c.o:
30 $(CC) -c $(ALL_CFLAGS) $<
31
32all:
33 @for d in $(SUBDIRS); do (echo "### Making $@ in incremental/$$d"; cd $$d; $(MAKE) $@) || exit 1; done
34
35clean:
36 rm -f $(KSRVTGT_OBJS) $(TARGET)
37 @for d in $(SUBDIRS); do (echo "### Making $@ in incremental/$$d"; cd $$d; $(MAKE) $@) || exit 1; done
38
39cleandir distclean:
40 rm -f Makefile $(KSRVTGT_OBJS) $(TARGET)
41 @for d in $(SUBDIRS); do (echo "### Making $@ in incremental/$$d"; cd $$d; $(MAKE) $@) || exit 1; done
42
43depend:
44 @for d in $(SUBDIRS); do (echo "### Making $@ in incremental/$$d"; cd $$d; $(MAKE) $@) || exit 1; done
45
46install:
47 $(INSTALL_PROGRAM) ksrvtgt $(DESTDIR)$(mrbindir)
48 @for d in $(SUBDIRS); do (echo "### Making $@ in incremental/$$d"; cd $$d; $(MAKE) $@) || exit 1; done
This page took 0.244766 seconds and 5 git commands to generate.