blob: c45f5b2c4b58edf89d7385889d9843a0e8102400 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
|
#!/bin/sh
# Author: Christian Starkjohann
# Creation Date: 2008-04-17
# Tabsize: 4
# Copyright: (c) 2008 by OBJECTIVE DEVELOPMENT Software GmbH
# License: GNU GPL v2 (see License.txt), GNU GPL v3 or proprietary (CommercialLicense.txt)
# This Revision: $Id$
if [ "$1" = remove ]; then
make clean
rm -f opendevice.[ch]
exit
fi
cp ../../libs-host/opendevice.[ch] .
|