EMILE/libui/Makefile

20 lines
341 B
Makefile
Raw Normal View History

2007-08-12 20:40:55 +00:00
#
# (c) 2005 Laurent Vivier <Laurent@lvivier.info>
#
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-08-15 10:53:11 +00:00
SOURCES = window.c progressbar.c scrolllist.c
2007-08-12 20:40:55 +00:00
HEADERS =
all: $(LIBRARY)
include $(TOP)/../Rules.mk