# BlinkenLib
# Copyright 2004-2023 Stefan Schuermans <stefan@schuermans.info>
# Copyleft GNU public license - http://www.gnu.org/copyleft/gpl.html
# a blinkenarea.org project
include version.mk
SUFFIXES :=
.SUFFIXES:
.SECONDARY:
##################
# default target #
##################
.PHONY: all
all: build_all
###########
# cleanup #
###########
.PHONY: clean
clean:
rm -rf build lib bin
.PHONY: distclean
distclean: clean
rm -rf cfg
############
# settings #
############
CC := gcc
AR := ar
RANLIB := ranlib
INSTALL := install
#################
# configuration #
#################
CFG_INCDIR := -I/sw/include
CFG_LIBDIR := -L/sw/lib
CONFS := cfg/config.mk cfg/include/BlinkenLib/config.h
.PHONY: conf
conf: $(CONFS) ;