blob: b6b369b80645d0cef0f0a1b6f61fd8e8206e3a29 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
|
subdir = src/share/
FILES=$(axiom_target_libdir)/command.list
.SUFFIXES:
.PHONY: all all-share
all: all-ax
all-ax all-share: stamp
@ echo 3 finished $(srcdir)
stamp: ${FILES}
-rm -f stamp
$(STAMP) stamp
mostlyclean-local:
@-rm -f $(FILES)
@-rm -f stamp
clean-local: mostlyclean-local
distclean-local: clean-local
$(axiom_target_libdir)/command.list: $(srcdir)/algebra/command.list
$(INSTALL_DATA) $< $@
|