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

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

Revision 1.1, Thu Jul 27 17:13:18 2000 UTC (17 years, 3 months ago) by alaffin
Branch: MAIN

New additions:
 - tst_ library code.
 - new quickhit tests
 - more general code cleanup

CFLAGS+= -I../include
LDFLAGS+=
TARGET=libltp.a
SRCS=$(wildcard *.c)
OBJS=$(patsubst %.c,%.o,$(SRCS))

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

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