File: depend

package info (click to toggle)
ruby-gnome2 0.15.0-1.1
  • links: PTS
  • area: main
  • in suites: etch-m68k
  • size: 7,692 kB
  • ctags: 8,558
  • sloc: ansic: 69,912; ruby: 19,511; makefile: 97; xml: 35; sql: 13
file content (11 lines) | stat: -rw-r--r-- 352 bytes parent folder | download | duplicates (3)
1
2
3
4
5
6
7
8
9
10
11
INSTALL_SCRIPT = $(RUBY) -r ftools -e 'File::install(ARGV[0], ARGV[1], 0755, true)'
GLADE_CREATOR = ruby-glade-create-template
BINDIR = $(prefix)/bin

$(BINDIR):
	$(MAKEDIRS) $(BINDIR)

$(BINDIR)/$(GLADE_CREATOR): $(srcdir)/bin/$(GLADE_CREATOR)
	$(INSTALL_SCRIPT) $(srcdir)/bin/$(GLADE_CREATOR) $(BINDIR)

install: $(BINDIR) $(BINDIR)/$(GLADE_CREATOR)