File: Makefile

package info (click to toggle)
octave-odepkg 0.8.4-2
  • links: PTS, VCS
  • area: main
  • in suites: jessie, jessie-kfreebsd
  • size: 1,740 kB
  • ctags: 296
  • sloc: cpp: 3,697; objc: 1,448; makefile: 161; sh: 21
file content (28 lines) | stat: -rw-r--r-- 631 bytes parent folder | download | duplicates (2)
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
# Filename:    Makefile
# Description: Makefile for OdePkg
# ChangeLog: 20070222, this Makefile was originally be created
#    from the Makefile of the comm package. Modifications have
#    been done to create OdePkg.

sinclude ../../Makeconf

PKG_FILES = COPYING DESCRIPTION INDEX $(wildcard src/*) $(wildcard inst/*) \
	doc/odepkg.pdf doc/Makefile $(wildcard doc/*.texi)
SUBDIRS = doc/

.PHONY : $(SUBDIRS)

pre-pkg::
	@for _dir in $(SUBDIRS); do \
	  $(MAKE) -C $$_dir all; \
	done

clean :
	@for _dir in $(SUBDIRS); do \
	  $(MAKE) -C $$_dir $(MAKECMDGOALS); \
	done
	$(RM) *~ octave-core

realclean : clean

distclean : clean