EMILE/libui/Makefile

21 lines
379 B
Makefile
Raw Permalink Normal View History

2007-08-12 20:40:55 +00:00
#
# (c) 2007 Laurent Vivier <Laurent@Vivier.EU>
2007-08-12 20:40:55 +00:00
#
TOP = $(shell pwd)
68000FLAGS = -m68000 -Wa,-m68000
CFLAGS += -nostdlib -nodefaultlibs -Wall -Werror -Wno-multichar -fpic -O2 -Os
CPPFLAGS = -I$(TOP) -DARCH_M68K
LIBRARY = libui.a
2007-09-17 23:26:44 +00:00
SOURCES = window.c progressbar.c scrolllist.c edit.c
2007-08-12 20:40:55 +00:00
2007-08-22 14:47:39 +00:00
HEADERS = libui.h
2007-08-12 20:40:55 +00:00
all: $(LIBRARY)
2007-09-06 22:09:11 +00:00
include $(TOP)/../tools.mk
2007-08-12 20:40:55 +00:00
include $(TOP)/../Rules.mk