mirror of
https://gitlab.com/scemama/eplf
synced 2024-12-22 20:35:30 +01:00
26 lines
481 B
Makefile
26 lines
481 B
Makefile
|
|
all: bin/eplf
|
|
|
|
EZFIO/config/eplf.config: EZFIO.tar.gz
|
|
tar -zxvf EZFIO.tar.gz
|
|
cd EZFIO ; ./configure
|
|
if [ -e $@ ] ; then rm $@ ; fi
|
|
ln -s $$PWD/eplf.config $@
|
|
|
|
EZFIO/lib/libezfio.so: EZFIO/config/eplf.config
|
|
make -C EZFIO/
|
|
|
|
bin/ezfio.py: EZFIO/lib/libezfio.so
|
|
if [ -e $@ ] ; then rm $@ ; fi
|
|
ln -s $$PWD/EZFIO/Python/ezfio.py $@
|
|
|
|
bin/eplf: EZFIO/lib/libezfio.so
|
|
make -C src
|
|
mv src/eplf bin
|
|
|
|
clean:
|
|
- rm -rf EZFIO
|
|
- rm bin/eplf
|
|
- rm bin/ezfio.py
|
|
- make -C src veryclean
|