libmonochrome/Makefile.vars

83 lines
2.7 KiB
Makefile
Raw Normal View History

2016-04-21 22:27:29 +02:00
#!/usr/bin/make -f
#******************************************************************************#
2016-05-22 23:43:10 +02:00
# #
# Makefile.vars #
# | Project : libmonochrome #
# #
# By: thomas <thomas@touhey.fr> #
# Last updated: 2016/04/21 22:15:56 #
2016-04-21 22:27:29 +02:00
# #
#******************************************************************************#
# PROJECT INFORMATION (type: lib)
2016-04-21 22:27:29 +02:00
NAME = monochrome
VERSION = 1.1
2016-04-21 22:27:29 +02:00
2016-05-10 14:08:13 +02:00
# PROJECT DIRECTORIES
2016-04-21 22:27:29 +02:00
INCDIR = ./include
SRCDIR = ./src
OBJDIR = ./obj
MANDIR = ./man
2016-04-21 22:27:29 +02:00
# SOURCE FILES
SRC = ML_vram_adress \
ML_clear_vram ML_clear_screen ML_display_vram \
ML_set_contrast ML_get_contrast \
\
ML_pixel ML_pixel_test \
ML_point ML_line ML_horizontal_line ML_vertical_line \
ML_rectangle ML_polygon ML_filled_polygon \
ML_circle ML_filled_circle ML_ellipse ML_ellipse_in_rect \
ML_filled_ellipse ML_filled_ellipse_in_rect \
ML_horizontal_scroll ML_vertical_scroll \
\
ML_bmp_or ML_bmp_and ML_bmp_xor \
ML_bmp_or_cl ML_bmp_and_cl ML_bmp_xor_cl \
ML_bmp_8_or ML_bmp_8_and ML_bmp_8_xor \
ML_bmp_8_or_cl ML_bmp_8_and_cl ML_bmp_8_xor_cl \
ML_bmp_16_or ML_bmp_16_and ML_bmp_16_xor \
ML_bmp_16_or_cl ML_bmp_16_and_cl ML_bmp_16_xor_cl
2016-04-21 22:27:29 +02:00
# INCLUDE FILES
## PUBLIC
INCPUB = monochrome
## INTERNALS
INCINT = monochrome/internals
# MANPAGES
MAN3 = ml_bmp ml_bmp_8_and ml_bmp_8_or ml_bmp_8_xor \
2016-05-10 14:08:13 +02:00
ml_bmp_8_and_cl ml_bmp_8_or_cl ml_bmp_8_xor_cl \
ml_bmp_16_and ml_bmp_16_or ml_bmp_16_xor \
ml_bmp_16_and_cl ml_bmp_16_or_cl ml_bmp_16_xor_cl \
ml_bmp_and ml_bmp_or ml_bmp_xor \
ml_bmp_and_cl ml_bmp_or_cl ml_bmp_xor_cl \
ml_line ml_horizontal_line ml_vertical_line \
ml_circle ml_filled_circle \
ml_ellipse ml_filled_ellipse \
ml_ellipse_in_rect ml_filled_ellipse_in_rect \
ml_polygon ml_filled_polygon \
ml_scroll ml_vertical_scroll ml_horizontal_scroll \
ml_vram ml_vram_adress ml_clear_screen ml_clear_vram \
ml_display_vram ml_contrast ml_get_contrast ml_set_contrast
MAN = $(MAN3:%=man3/%.3)
2016-04-21 22:27:29 +02:00
# BIN UTILITIES
## Platform
PLATFORM = sh3eb-elf-
## Compilator
CC = $(PLATFORM)gcc
CFLAGS = -I $(INCDIR)
## Archive manager
AR = $(PLATFORM)ar
## Ranlib
RANLIB = $(PLATFORM)ranlib
## Directory creator
MKDIR = mkdir -p
## File remover
RM = rm -f
## Compressor
GZIP = gzip
## Installer
INST = /usr/bin/install
2016-04-21 22:27:29 +02:00
# END OF FILE