1998-09-18 02:03:19 -04:00
|
|
|
##---------------------------------------------------------------------------
|
1998-09-15 23:26:06 -04:00
|
|
|
##
|
|
|
|
|
## Makefile Template for Programs
|
|
|
|
|
##
|
|
|
|
|
|
1998-09-18 02:03:19 -04:00
|
|
|
all-common: all-local $(PROGRAMS)
|
1998-09-15 23:26:06 -04:00
|
|
|
|
1998-09-18 14:47:14 -04:00
|
|
|
install-common: all-common install-local
|
1998-09-15 23:26:06 -04:00
|
|
|
|
1998-09-18 02:03:19 -04:00
|
|
|
clean-common: clean-local
|
|
|
|
|
$(RM) $(PROGRAMS) $(XPROGRAMS) $(XSRCS) *.o a.out core
|
1998-09-15 23:26:06 -04:00
|
|
|
|
1998-09-18 02:03:19 -04:00
|
|
|
veryclean-common: veryclean-local clean-local
|
1998-09-15 23:26:06 -04:00
|
|
|
|
1998-09-18 02:03:19 -04:00
|
|
|
depend-common: depend-local
|
1998-09-15 23:26:06 -04:00
|
|
|
$(MKDEP) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
|
|
1998-09-18 02:03:19 -04:00
|
|
|
lint: lint-local
|
|
|
|
|
$(LINT) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
|
|
|
|
|
|
lint5: lint5-local
|
|
|
|
|
$(5LINT) $(DEFS) $(DEFINES) $(SRCS)
|
|
|
|
|
|
|
|
|
|
# these could be empty
|
|
|
|
|
lint-local: FORCE
|
|
|
|
|
lint5-local: FORCE
|
1998-09-21 22:25:42 -04:00
|
|
|
|
|
|
|
|
Makefile: $(top_srcdir)/build/rules.mk
|