1
0
espelhamento de https://github.com/TigerVNC/tigervnc.git sincronizado 2024-08-21 17:54:34 +02:00
tigervnc/boilerplate.mk
Constantin Kaplinsky 47ed8d321c Initial revision
git-svn-id: svn://svn.code.sf.net/p/tigervnc/code/trunk@2 3789f03b-4d11-0410-bbf8-ca57d06f2519
2004-10-08 09:43:57 +00:00

36 linhas
665 B
Makefile

all::
@subdirs="$(SUBDIRS)"; for d in $$subdirs; do (cd $$d; $(MAKE) $@) || exit 1; done
clean::
@subdirs="$(SUBDIRS)"; for d in $$subdirs; do (cd $$d; $(MAKE) $@) || exit 1; done
clean::
rm -f $(program) $(library) *.o
SHELL = @SHELL@
top_srcdir = @top_srcdir@
@SET_MAKE@
CC = @CC@
CFLAGS = @CFLAGS@ $(DIR_CFLAGS)
CCLD = $(CC)
CXX = @CXX@
CXXFLAGS = @CXXFLAGS@
CXXLD = $(CXX)
CPPFLAGS = @CPPFLAGS@
DEFS = @DEFS@
ALL_CPPFLAGS = $(CPPFLAGS) $(DEFS) $(DIR_CPPFLAGS)
LIBS = @LIBS@
LDFLAGS = @LDFLAGS@
RANLIB = @RANLIB@
AR = ar cq
.SUFFIXES:
.SUFFIXES: .cxx .c .o
.c.o:
$(CC) $(ALL_CPPFLAGS) $(CFLAGS) -c $<
.cxx.o:
$(CXX) $(ALL_CPPFLAGS) $(CXXFLAGS) -c $<