lyx_mirror/src/frontends/xforms/forms/makefile
Lars Gullik Bjønnes 977cf6160f apply the patch from Angus
git-svn-id: svn://svn.lyx.org/lyx/lyx-devel/trunk@1229 a592a061-630c-0410-9148-cb99ea01b6c8
2000-11-21 21:51:25 +00:00

57 lines
1.2 KiB
Makefile

###/* This file is part of
###* ======================================================
###*
###* LyX, the High Level Word Processor
###*
###* Copyright 1995 Matthias Ettrich
###* Copyright 1995-2000 The LyX Team
###*
###*======================================================*/
###
###
### Makefile by Lars Gullik Bjønnes (larsbj@lyx.org)
### Modified by Allan Rae <rae@lyx.org>
### Rewritten by Angus Leeming.
### Only update files that really have changed. (Lgb 20000924))
SHELL = /bin/sh
.SUFFIXES: .fd .c
SRCS := form_citation.fd \
form_copyright.fd \
form_document.fd \
form_error.fd \
form_graphics.fd \
form_index.fd \
form_paragraph.fd \
form_preferences.fd \
form_print.fd \
form_ref.fd \
form_tabular.fd \
form_tabular_create.fd \
form_toc.fd \
form_url.fd
OBJS := $(SRCS:.fd=.C)
all:
@echo "This is a makefile intended for the maintainer only."
@echo "Only run it if you are absolutely sure about what you"
@echo "are doing."
test: clean $(OBJS)
updatesrc: test
for fil in *.C *.h; \
do cmp -s $$fil ../$$fil || mv $$fil ..; \
done
.fd.C:
${SHELL} ./fdfix.sh $<
clean:
rm -f *.[hHcC] *.bak
distclean: clean
rm -f *.orig *.rej *~