1999-08-30 04:08:00 -04:00
|
|
|
# $OpenLDAP$
|
2005-01-01 15:49:32 -05:00
|
|
|
## Copyright 1998-2005 The OpenLDAP Foundation.
|
2003-11-25 21:58:56 -05:00
|
|
|
## All rights reserved.
|
1998-10-24 21:41:42 -04:00
|
|
|
##
|
2003-11-25 21:58:56 -05: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-24 21:41:42 -04:00
|
|
|
##
|
2003-11-25 21:58:56 -05: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-24 21:41:42 -04:00
|
|
|
|
1998-11-21 23:22:28 -05:00
|
|
|
all-common: $(PROGRAMS) FORCE
|
1998-10-24 21:41:42 -04:00
|
|
|
|
1998-11-21 23:22:28 -05:00
|
|
|
clean-common: FORCE
|
1999-10-28 03:31:59 -04:00
|
|
|
$(RM) $(PROGRAMS) $(XPROGRAMS) $(XSRCS) *.o *.lo a.out core *.core \
|
|
|
|
|
.libs/* *.exe
|
1998-10-24 21:41:42 -04:00
|
|
|
|
1998-11-21 23:22:28 -05:00
|
|
|
depend-common: FORCE
|
1998-10-24 21:41:42 -04:00
|
|
|
$(MKDEP) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
|
|
1998-11-21 23:22:28 -05:00
|
|
|
lint: FORCE
|
1998-10-24 21:41:42 -04:00
|
|
|
$(LINT) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
|
|
1998-11-21 23:22:28 -05:00
|
|
|
lint5: FORCE
|
1998-10-24 21:41:42 -04:00
|
|
|
$(5LINT) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
|
|
|
|
|
|
Makefile: $(top_srcdir)/build/rules.mk
|
1998-11-21 23:22:28 -05:00
|
|
|
|