$(info The compilation root directory is: $(ROOT_DIR))                          
$(info The name of the shared library to be created is: $(SHLIB))               


#CFLAGS= -O3 -Wall -pipe -pedantic 
#PKG_CFLAGS= -O3 -Wall -pipe -pedantic 


PKG_LIBS= -L./ 
LIBS= -L./ 

SOURCES= shoelace.c
OBJECTS= $(SOURCES:.c=.o)

 
all: $(SHLIB)

$(SHLIB): $(OBJECTS)












