#!/usr/bin/make -f
#******************************************************************************#
#                                                                              #
#   Makefile                                                                   #
#   | Project : libfx                                                          #
#                                                                              #
#   By: thomas <thomas@touhey.fr>                                              #
#   Last updated: 2015/12/23 10:02:49                                          #
#                                                                              #
#******************************************************************************#
# INCLUDE CONFIGURATION
include $(CURDIR)/Makefile.vars
include $(CURDIR)/Makefile.cfg

# STYLE VARS
define \n


endef

# RULES
## Make everything -- make the library (default)
all: lib$(NAME).a

## Make the library (do nothing as it's already done)
lib$(NAME).a:

## Clean the library (do nothing)
clean:
fclean:

## Install library
install:
	$(INST) -D -m 644 lib$(NAME).a $(ILIBDIR)/lib$(NAME).a
	$(foreach inc, $(INCPUB), \
		$(INST) -D -m 644 $(INCDIR)/$(inc).h $(IINCDIR)/$(inc).h$(\n))

# Phony doz rulz
.PHONY: all clean fclean
.PHONY: install

### END OF FILE
