Use one master makefile instead of having a different one per project.
[nondaw.git] / FL / makefile.inc
blobff9a84baecf834c7ea9c8ef00d79e1b95ec032df
1 # -*- mode: makefile; -*-
3 VERSION := 1.1.0
4 PACKAGE := FL
6 all: FL
8 SRCS := $(wildcard FL/*.C FL/*.fl)
10 SRCS:=$(SRCS:.fl=.C)
11 SRCS:=$(sort $(SRCS))
12 OBJS:=$(SRCS:.C=.o)
14 all: FL/libfl_widgets.a
16 FL/libfl_widgets.a: $(OBJS)
17         @ ar rcs $@ $(OBJS)
19 .PHONEY: FL
20 FL: FL/libfl_widgets.a
22 clean:
23         rm -f $(OBJS) FL/libfl_widgets.a
25 install:
26         @