EMILE/libemile/Makefile

34 lines
952 B
Makefile
Raw Normal View History

#
# (c) 2004-2007 Laurent Vivier <Laurent@Vivier.EU>
#
#
2005-11-16 14:00:27 +00:00
TOP=$(shell pwd)
VPATH=$(TOP)
2005-11-16 14:00:27 +00:00
CPPFLAGS = $(CROSS_COMPILE_CPPFLAGS)
LDFLAGS = $(CROSS_COMPILE_LDFLAGS)
2004-12-09 22:57:09 +00:00
LIBRARY = libemile.a
SOURCES = emile_first_get_param.c \
2005-11-16 14:00:27 +00:00
emile_first_set_param.c emile_first_set_param_scsi.c \
2007-10-04 20:52:37 +00:00
emile_floppy_create_image.c emile_second_create_mapfile.c \
2005-11-16 14:00:27 +00:00
emile_scsi_create_container.c emile_scsi_get_dev.c \
emile_scsi_get_rdev.c emile_second_get_configuration.c \
2007-10-04 20:52:37 +00:00
emile_second_set_configuration.c \
2006-09-20 21:47:43 +00:00
emile_second_set_param.c emile_second_get_param.c \
2007-10-04 20:52:37 +00:00
emile_first_set_param_scsi_extents.c
2004-12-09 22:57:09 +00:00
2007-10-04 21:00:27 +00:00
HEADERS = emile.h libemile.h bootblock.h
2007-02-24 13:34:44 +00:00
CFLAGS = -Wall -Werror -g
CPPFLAGS = -I$(TOP)/../libmacos -I$(TOP)/../libcontainer -I$(TOP)/../libstream -I$(TOP)/../libconfig -I$(TOP)/../libmap -I$(TOP)
2004-12-09 22:57:09 +00:00
all:
test -d $(TARGET) || mkdir $(TARGET)
$(MAKE) -C $(TARGET) -f $(TOP)/Makefile $(LIBRARY) TOP=$(TOP)
2004-12-09 22:57:09 +00:00
2007-09-06 22:09:11 +00:00
include $(TOP)/../tools.mk
2005-11-16 14:00:27 +00:00
include $(TOP)/../Rules.mk