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

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

Revision 1.1, Mon Jan 22 17:50:31 2001 UTC (16 years, 9 months ago) by nstraz
Branch: MAIN

Adding a tools directory for programs that aren't test cases, but are used
to help run test cases.  The first addition is rand_lines which randomizes
the lines of a text file.

CFLAGS+= -I../include
LOADLIBES+= -L../lib -lltp

SRCS=$(wildcard *.c)
TARGETS=$(patsubst %.c,%,$(SRCS))

all: $(TARGETS)

clean:
	rm -f $(TARGETS)