File: Makefile.mac

package info (click to toggle)
hbci4java 4.1.6%2Bdfsg-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 10,256 kB
  • sloc: java: 52,465; xml: 34,233; cpp: 3,264; makefile: 153; sh: 11
file content (19 lines) | stat: -rw-r--r-- 350 bytes parent folder | download | duplicates (6)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
# Makefile for hbci4java - MAC OS-X

# prefix lib and suffix .jnilib is required by Apple-Java

TARGET=libhbci4java-card-mac.jnilib
all: lib/$(TARGET)

lib/$(TARGET): bin/$(TARGET)
	cp bin/$(TARGET) lib/

bin/$(TARGET): .make

.make:
	make -C src -f Makefile.mac all

clean:
	-rm -f lib/$(TARGET)
	-rm -f bin/*
	-find . -name Makefile.depend -delete