mirror of
https://git.openldap.org/openldap/openldap.git
synced 2025-01-18 11:05:48 +08:00
22 lines
300 B
Makefile
22 lines
300 B
Makefile
##
|
|
## Makefile Template for Programs
|
|
##
|
|
|
|
all: $(PROGRAMS)
|
|
|
|
install: all
|
|
|
|
lint: FORCE
|
|
$(LINT) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
lint5: FORCE
|
|
$(5LINT) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
clean: FORCE
|
|
$(RM) $(PROGRAMS) $(XPROGRAMS) $(XSRCS) \
|
|
*.o a.out core
|
|
|
|
depend: FORCE
|
|
$(MKDEP) $(DEFS) $(DEFINES) $(SRCS)
|
|
|