8 Sep
2014
8 Sep
'14
5:56 p.m.
Matthew Ceroni wrote:
I have edited the Makefile to set the location to the libeap.so library. Running make directly in there results in "nothing to be done for all". Below is my edited Makefile. The target isn't set since it says RLM_CFLAGS and RLM_LIBS and SRCS defs to make TARGET.
Well, no. A C compiler / Make system uses CFLAGS and LIBS to build a target. It doesn't mean that the *variable* TARGET is set once you edit the rest of the Makefile. You need to set: TARGET = rlm_eap2 Alan DeKok.