20 lines
352 B
Makefile
20 lines
352 B
Makefile
CFLAGS=$(COPTS) $(DEBUGOPTS) -I$(INCLUDE_DIR)
|
|
|
|
OBJS=menu.o widgets.o SmeMenuButto.o WinLabel.o WinCommand.o WinMenuButto.o
|
|
# WinButton.o
|
|
|
|
default: controls.o
|
|
|
|
controls.o: $(OBJS)
|
|
$(LD) -r -o controls.o $(OBJS)
|
|
|
|
clean:
|
|
rm -f *.o *~ *.s dll_* *.a
|
|
|
|
depend:
|
|
$(CC) $(CFLAGS) -M *.c > .depend
|
|
|
|
ifeq (.depend,$(wildcard .depend))
|
|
include .depend
|
|
endif
|