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

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

Revision 1.2, Wed Feb 28 17:41:59 2001 UTC (16 years, 8 months ago) by nstraz
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +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
LDFLAGS+=
TARGET=libltp.a
SRCS=$(wildcard *.c)
OBJS=$(patsubst %.c,%.o,$(SRCS))

$(TARGET): $(OBJS)
	$(AR) -cr $@ $^    

clean:
	rm -f $(TARGET) $(OBJS)