forked from freemint/qed
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Makefile
52 lines (40 loc) · 980 Bytes
/
Makefile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
#
# Makefile for freemint
#
SHELL = /bin/sh
SUBDIRS = src
srcdir = .
top_srcdir = .
subdir =
default: help
include $(top_srcdir)/CONFIGVARS
include $(top_srcdir)/RULES
include $(top_srcdir)/PHONY
help:
@echo '#'
@echo '# targets:'
@echo '# --------'
@echo '# - all'
@echo '#'
@echo '# - install'
@echo '# - clean'
@echo '# - distclean'
@echo '# - help'
@echo '#'
@echo '# To install single CPU binary:'
@echo '# make install cpu=<CPU> installdir=<DIR>'
@echo '#'
all-here: doc/qed-en.hyp doc/qed-nl.hyp doc/qed-de.hyp
doc/qed-en.hyp: doc/qed-en.stg
if test "$(HCP)" = ""; then echo "hcp not available" >&2; else \
$(HCP) -o $@ $<; fi
doc/qed-de.hyp: doc/qed-de.stg
if test "$(HCP)" = ""; then echo "hcp not available" >&2; else \
$(HCP) -o $@ $<; fi
doc/qed-nl.hyp: doc/qed-nl.stg
if test "$(HCP)" = ""; then echo "hcp not available" >&2; else \
$(HCP) -o $@ $<; fi
distclean::
rm -f doc/*.hyp doc/*.ref
# default overwrites
# default definitions