EMILE/libconfig/Makefile

34 lines
814 B
Makefile
Raw Permalink Normal View History

2007-08-25 21:31:10 +00:00
#
# (c) 2005-2007 Laurent Vivier <Laurent@Vivier.EU>
2007-08-25 21:31:10 +00:00
#
TOP = $(shell pwd)
VPATH=$(TOP)
TARGET = native
CFLAGS += -nostdlib -nodefaultlibs -Wall -Werror -Wno-multichar
ifeq ($(TARGET), m68k-linux)
68000FLAGS = -m68000 -Wa,-m68000
CFLAGS += -fpic -O2 -Os
else
CFLAGS += -g
endif
CPPFLAGS = -I$(TOP)/../libstream
LIBRARY = libconfig.a
SOURCES = config_get_indexed_property.c config_get_next_property.c \
config_get_property.c config_remove_property.c \
config_set_property.c config_set_indexed_property.c \
2007-08-26 09:16:23 +00:00
config_remove_indexed_property.c config_find_indexed_property.c \
2007-08-26 19:48:12 +00:00
config_find_entry.c config_add_property.c
2007-08-25 21:31:10 +00:00
HEADERS = libconfig.h
all:
test -d $(TARGET) || mkdir $(TARGET)
$(MAKE) -C $(TARGET) -f $(TOP)/Makefile $(LIBRARY) TOP=$(TOP)
2007-09-06 22:09:11 +00:00
include $(TOP)/../tools.mk
2007-08-25 21:31:10 +00:00
include $(TOP)/../Rules.mk