2 # Makefile to generate the PIP library
5 include ..
/Etc
/Makefile.config
7 INCLUDES
=-I..
$(patsubst -I.
/%,-I..
/%,$(LIBS_INCLUDES
))
8 CFLAGS
+= $(POLYLIB_ARGS
) $(INCLUDES
)
15 SRCS
=pip.c integrer.c tab.c traiter.c sol.c
16 OBJS
=$(patsubst %.c
,%.o
,$(SRCS
))
25 # Try to include gracefully the dependency file of C
26 # A separate file is needed because of cvs management
29 ifneq (,$(wildcard $(DEPEND_FILE
)))
30 include $(DEPEND_FILE
)
38 $(DEPEND
) $(SRCS
) > $(DEPEND_FILE
)
41 # Targets for building the library
52 rm -f core
*.o libpip.a
$(DEPEND_FILE
)