You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
31 lines
374 B
31 lines
374 B
include ../Makefile.rules
|
|
|
|
OBJ = gui.o \
|
|
gui_window.o \
|
|
gui_button.o \
|
|
gui_list.o \
|
|
gui_entry.o \
|
|
gui_label.o \
|
|
gui_image.o
|
|
|
|
SRC = $(OBJ:%.o=%.c)
|
|
|
|
all: libgui.a
|
|
|
|
libgui.a: $(OBJ)
|
|
$(AR) rcs libgui.a $(OBJ)
|
|
|
|
dep: $(SRC)
|
|
$(CC) -MM $(SRC) $(CFLAGS) > $(DEPENDFILE)
|
|
|
|
clean:
|
|
rm -rf *.o
|
|
rm -rf *.a
|
|
rm -rf *~
|
|
rm -rf $(DEPENDFILE)
|
|
|
|
|
|
-include $(DEPENDFILE)
|
|
|
|
|