- Timestamp:
- Nov 3, 2014, 1:51:23 AM (6 years ago)
- Location:
- branches/contrib/debian/package-host/libnl-tiny
- Files:
-
- 1 deleted
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
branches/contrib/debian/package-host/libnl-tiny/debian/rules
r604 r633 12 12 DEB_HOST_GNU_TYPE?=$(shell dpkg-architecture -qDEB_HOST_GNU_TYPE) 13 13 CC=$(DEB_HOST_GNU_TYPE)-gcc 14 export CC14 CFLAGS=-O2 -fPIC 15 15 16 16 %: … … 21 21 dh_auto_configure 22 22 23 $(MAKE) -C src23 $(MAKE) CC:='$(CC)' CFLAGS:='$(CFLAGS)' -C src 24 24 25 25 dh_auto_test … … 28 28 install -d debian/libnl-tiny/usr/lib 29 29 install src/libnl-tiny.so debian/libnl-tiny/usr/lib/libnl-tiny.so 30 install -d debian/libnl-tiny-dev/usr/include /netlink-tiny31 -find src/include/ -type d -name ".svn" -exec rm -rf {} \;32 cp -a src/include/* debian/libnl-tiny-dev/usr/include/netlink-tiny30 install -d debian/libnl-tiny-dev/usr/include 31 cp -arl src/include debian/libnl-tiny-dev/usr/include/netlink-tiny 32 find debian/libnl-tiny-dev/usr/include/netlink-tiny -type d -name .svn -prune -print0 | xargs -0 rm -rf 33 33 34 34 override_dh_auto_clean:
Note: See TracChangeset
for help on using the changeset viewer.