File: Makefile.in

package info (click to toggle)
gauche-gl 0.6-4
  • links: PTS, VCS
  • area: main
  • in suites: bullseye, buster, forky, sid, trixie
  • size: 6,052 kB
  • sloc: ansic: 33,199; lisp: 13,740; sh: 2,484; makefile: 288
file content (41 lines) | stat: -rw-r--r-- 789 bytes parent folder | download | duplicates (3)
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
.PHONY: all check clean install distclean maintainer-clean

SHELL       = @SHELL@
srcdir      = @srcdir@
VPATH       = $(srcdir)
top_builddir = @top_builddir@
top_srcdir   = @top_srcdir@

GAUCHE_CONFIG  = "@GAUCHE_CONFIG@"
GAUCHE_INSTALL = "@GAUCHE_INSTALL@"

SCM_INSTALL_DIR = "$(DESTDIR)`$(GAUCHE_CONFIG) --sitelibdir`"

SCMFILES = gl.scm        \
	   gl/math3d.scm \
	   gl/glut.scm   \
           gl/simple-image.scm \
	   gl/simple/viewer.scm \
	   gl/simple/image.scm

CONFIG_GENERATED = Makefile

all :

check :

install :
	$(GAUCHE_INSTALL) -m 444 -T $(SCM_INSTALL_DIR) $(SCMFILES)

uninstall :
	$(GAUCHE_INSTALL) -U $(SCM_INSTALL_DIR) $(SCMFILES)

clean :
	rm -rf core *~ gl/*~

distclean : clean
	rm -rf $(CONFIG_GENERATED)

maintainer-clean : clean
	rm -rf $(CONFIG_GENERATED)