Gaurav Jain wrote:

> LFLAGS= -L../STABLE-1_4_0/ports/unix/proj/lib/liblwip.so
..
> edit : $(OBJS)
>         $(CC) $(CFLAGS) $(INCLUDES) -o edit $(OBJS) $(LFLAGS)
> 
> tcp_server.o : tcp_server.c tcp.o tcp_out.o
>         $(CC) $(CFLAGS) $(INCLUDES) -c tcp_server.c $(LFLAGS)

It seems you should drop the $(LFLAGS) on all targets except the link
target (i.e. 'edit').

BTW.
 From 'make edit -n --trace' you can see what actually needs
 to be done w/o actually doing it.

-- 
--gv

_______________________________________________
lwip-users mailing list
lwip-users@nongnu.org
https://lists.nongnu.org/mailman/listinfo/lwip-users

Reply via email to