2005-11-08 02:16:50 +00:00
|
|
|
#
|
2007-09-06 22:09:11 +00:00
|
|
|
# (c) 2004-2007 Laurent Vivier <Laurent@lvivier.info>
|
2005-11-08 02:16:50 +00:00
|
|
|
#
|
|
|
|
#
|
|
|
|
|
2005-11-16 14:00:27 +00:00
|
|
|
TOP=$(shell pwd)
|
|
|
|
|
2005-05-10 20:20:15 +00:00
|
|
|
CPPFLAGS = $(CROSS_COMPILE_CPPFLAGS)
|
|
|
|
LDFLAGS = $(CROSS_COMPILE_LDFLAGS)
|
|
|
|
|
2004-12-09 22:57:09 +00:00
|
|
|
LIBRARY = libemile.a
|
|
|
|
|
2007-10-04 20:52:37 +00:00
|
|
|
SOURCES = emile_checksum.c 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 \
|
2005-11-28 20:53:57 +00:00
|
|
|
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
|
|
|
|
2005-11-08 02:16:50 +00:00
|
|
|
HEADERS = emile.h libemile.h partition.h bootblock.h
|
|
|
|
|
2007-02-24 13:34:44 +00:00
|
|
|
CFLAGS = -Wall -Werror -g
|
2007-10-04 20:52:37 +00:00
|
|
|
CPPFLAGS = -I../libmacos -I../libcontainer -I../libstream -I../libconfig -I../libmap
|
2004-12-09 22:57:09 +00:00
|
|
|
|
|
|
|
all: $(LIBRARY)
|
|
|
|
|
2007-09-06 22:09:11 +00:00
|
|
|
include $(TOP)/../tools.mk
|
2005-11-16 14:00:27 +00:00
|
|
|
include $(TOP)/../Rules.mk
|