dxx-rebirth/ui/makefile

20 lines
488 B
Makefile
Raw Normal View History

2006-03-20 16:43:15 +00:00
TOPDIR = ..
include $(TOPDIR)/makefile.config
OBJECTS = \
ui.$(OBJ) mouse.$(OBJ) window.$(OBJ) uidraw.$(OBJ) button.$(OBJ) \
gadget.$(OBJ) listbox.$(OBJ) message.$(OBJ) popup.$(OBJ) scroll.$(OBJ) \
radio.$(OBJ) checkbox.$(OBJ) inputbox.$(OBJ) userbox.$(OBJ) menu.$(OBJ) \
keytrap.$(OBJ) icon.$(OBJ) keypress.$(OBJ) \
menubar.$(OBJ) keypad.$(OBJ)
ifdef ENV_LINUX
OBJECTS += lfile.$(OBJ)
else
OBJECTS += file.$(OBJ)
endif
OUTPUT = $(LIBDIR)ui.$(ARC)
include $(TOPDIR)/makefile.lib