non/FL/makefile.inc

26 lines
338 B
PHP
Raw Normal View History

2008-05-16 22:52:10 +02:00
# -*- mode: makefile; -*-
2008-05-01 10:05:10 +02:00
VERSION := 1.1.0
PACKAGE := FL
all: FL
SRCS := $(wildcard FL/*.C FL/*.fl)
2008-05-01 10:05:10 +02:00
SRCS:=$(SRCS:.fl=.C)
SRCS:=$(sort $(SRCS))
OBJS:=$(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: $(OBJS)
@ ar rcs $@ $(OBJS)
2008-05-01 10:05:10 +02:00
.PHONEY: FL
FL: FL/libfl_widgets.a
clean:
rm -f $(OBJS) FL/libfl_widgets.a .deps
install:
@