non/FL/makefile.inc

19 lines
312 B
PHP
Raw Normal View History

2008-05-16 22:52:10 +02:00
# -*- mode: makefile; -*-
2008-05-01 10:05:10 +02:00
2008-05-28 05:39:42 +02:00
FL_SRCS := $(wildcard FL/*.C FL/*.fl)
2008-05-01 10:05:10 +02:00
FL_SRCS:=$(FL_SRCS:.fl=.C)
2008-05-28 05:39:42 +02:00
FL_SRCS:=$(sort $(FL_SRCS))
FL_OBJS:=$(FL_SRCS:.C=.o)
2008-05-01 10:05:10 +02:00
all: FL/libfl_widgets.a
2008-05-01 10:05:10 +02:00
FL/libfl_widgets.a: $(FL_OBJS)
2008-05-16 22:52:10 +02:00
@ ar rcs $@ $(FL_OBJS)
2008-05-01 10:05:10 +02:00
.PHONEY: FL
FL: FL/libfl_widgets.a
FL_clean:
rm -f $(FL_OBJS) FL/libfl_widgets.a