[BACK]Return to Makefile CVS log [TXT][DIR] Up to [Development] / ltp

File: [Development] / ltp / Makefile (download)

Revision 1.4, Wed Feb 28 17:41:59 2001 UTC (16 years, 8 months ago) by nstraz
Branch: MAIN
CVS Tags: HEAD
Changes since 1.3: +1 -1 lines

I've applied most of the patch that Urban Widmark <urban@teststation.com>
contributed.  It turns on the "all warnings" compiler options and fixes a lot
of the warnings.

CFLAGS+= -Wall
LDFLAGS+=

all: libltp.a
	@$(MAKE) -C doio $@
	@$(MAKE) -C tests $@
	@$(MAKE) -C pan $@
	@$(MAKE) -C tools $@

libltp.a:
	@$(MAKE) -C lib $@

clean:
	@$(MAKE) -C lib $@
	@$(MAKE) -C doio $@
	@$(MAKE) -C tests $@
	@$(MAKE) -C pan $@
	@$(MAKE) -C tools $@