EMILE/libui/Makefile
Laurent Vivier 2739696923 add edit.c
2007-09-17 23:26:44 +00:00

21 lines
382 B
Makefile

#
# (c) 2007 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
SOURCES = window.c progressbar.c scrolllist.c edit.c
HEADERS = libui.h
all: $(LIBRARY)
include $(TOP)/../tools.mk
include $(TOP)/../Rules.mk