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

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

Revision 1.3, Wed Feb 28 17:42:00 2001 UTC (16 years, 7 months ago) by nstraz
Branch: MAIN
CVS Tags: HEAD
Changes since 1.2: +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 -I../include -g
LOADLIBES+= -L../lib -lltp

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

all: $(TARGETS)

#$(TARGETS): $(SRCS)
#	$(CC) -o $@ $@.c $(CFLAGS) $(LDFLAGS)

clean:
	rm -f $(TARGETS)