|
|
| File: [Development] / ltp / lib / Makefile (download)
Revision 1.2, Wed Feb 28 17:41:59 2001 UTC (16 years, 7 months ago) by nstraz
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)