CRUX-ARM : Home

Home :: Documentation :: Download :: Development :: Community :: Ports :: Packages :: Bugs :: Links :: About :: Donors
fixed example for 'export PATH' in the README file)
[pkgutils-cross.git] / Makefile
CommitLineData
f49ee185
JB
1#
2# Makefile
3#
4
eaa7590b 5all: src/pkgmk.conf src/pkgmk
f49ee185
JB
6
7src/pkgmk:
22c894ee
JB
8 @if grep -e ubuntu /proc/version >/dev/null; then \
9 make -C src LDFLAGS="-static -larchive -lz -lacl"; \
10 else \
11 make -C src; \
12 fi
e3b423ef 13 @chmod a+x src/pkgmk
f49ee185
JB
14
15clean:
16 @make -C src clean
17
18distclean:
19 @make -C src distclean
20
21# End of file