File: Makefile.am

package info (click to toggle)
scigraphica 0.8.0-9
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 5,564 kB
  • ctags: 3,990
  • sloc: ansic: 43,040; sh: 7,278; python: 6,181; makefile: 591
file content (44 lines) | stat: -rw-r--r-- 861 bytes parent folder | download
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
## Makefile.am for sg

SRC_SUBDIRS = docs pixmaps macros zvt src examples
SUBDIRS = $(SRC_SUBDIRS)

PACKAGE = @PACKAGE@
VERSION = @VERSION@

# require automake 1.4
AUTOMAKE_OPTIONS = 1.4

EXTRA_DIST = \
	TODO \
        FAQ.compile \
        makecopyright \
        sg.spec  \
        sg-mdk.spec  \
        gnome-pty.h  \
        sg.desktop

Applicationsdir = $(datadir)/gnome/apps/Applications
Applications_DATA = sg.desktop

files:
	@files=`ls $(DISTFILES) 2> /dev/null `; for p in $$files; do \
	  echo $$p; \
	done
	@for subdir in $(SUBDIRS); do \
	  files=`cd $$subdir; $(MAKE) files | grep -v "make\[[1-9]\]"`; \
	  for file in $$files; do \
	    echo $$subdir/$$file; \
	  done; \
	done

release:
	rm -rf .deps */.deps 
	makecopyright 
	$(MAKE) distcheck 
	mv src/bak/* src/. 
	rm -rf src/bak

snapshot:
	$(MAKE) dist distdir=$(PACKAGE)`date +"%y%m%d"`