1999-08-30 16:08:00 +08:00
|
|
|
# $OpenLDAP$
|
2005-01-22 03:38:13 +08:00
|
|
|
## This work is part of OpenLDAP Software <http://www.openldap.org/>.
|
|
|
|
##
|
2008-01-08 08:19:56 +08:00
|
|
|
## Copyright 1998-2008 The OpenLDAP Foundation.
|
2003-11-26 10:58:56 +08:00
|
|
|
## All rights reserved.
|
1998-10-25 09:41:42 +08:00
|
|
|
##
|
2003-11-26 10:58:56 +08:00
|
|
|
## Redistribution and use in source and binary forms, with or without
|
|
|
|
## modification, are permitted only as authorized by the OpenLDAP
|
|
|
|
## Public License.
|
1998-10-25 09:41:42 +08:00
|
|
|
##
|
2003-11-26 10:58:56 +08:00
|
|
|
## A copy of this license is available in the file LICENSE in the
|
|
|
|
## top-level directory of the distribution or, alternatively, at
|
|
|
|
## <http://www.OpenLDAP.org/license.html>.
|
|
|
|
##---------------------------------------------------------------------------
|
|
|
|
#
|
|
|
|
# Makefile Template for Programs
|
|
|
|
#
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1998-11-22 12:22:28 +08:00
|
|
|
all-common: $(PROGRAMS) FORCE
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1998-11-22 12:22:28 +08:00
|
|
|
clean-common: FORCE
|
1999-10-28 15:31:59 +08:00
|
|
|
$(RM) $(PROGRAMS) $(XPROGRAMS) $(XSRCS) *.o *.lo a.out core *.core \
|
|
|
|
.libs/* *.exe
|
1998-10-25 09:41:42 +08:00
|
|
|
|
1998-11-22 12:22:28 +08:00
|
|
|
depend-common: FORCE
|
1998-10-25 09:41:42 +08:00
|
|
|
$(MKDEP) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
|
1998-11-22 12:22:28 +08:00
|
|
|
lint: FORCE
|
1998-10-25 09:41:42 +08:00
|
|
|
$(LINT) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
|
1998-11-22 12:22:28 +08:00
|
|
|
lint5: FORCE
|
1998-10-25 09:41:42 +08:00
|
|
|
$(5LINT) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
|
|
|
|
Makefile: $(top_srcdir)/build/rules.mk
|
1998-11-22 12:22:28 +08:00
|
|
|
|