master
parent
e25bcb78b0
commit
d05f450d00
|
@ -1,6 +1,6 @@
|
||||||
2.00 Alpha 2 - 04/11/2014
|
2.00 Alpha 2 - 04/11/2014
|
||||||
- Slightly better documentation
|
- Slightly better documentation
|
||||||
- Module loading for netfilter helpers
|
- Kernel module loading - 4/11/2014
|
||||||
|
|
||||||
2.00 Alpha 1 - 04/10/2014
|
2.00 Alpha 1 - 04/10/2014
|
||||||
- Complete code rewrite and restructure to solve some long standing issues with v1
|
- Complete code rewrite and restructure to solve some long standing issues with v1
|
||||||
|
|
2
Makefile
2
Makefile
|
@ -7,6 +7,8 @@ install:
|
||||||
$(DESTDIR)$(PREFIX)/etc/srfirewall
|
$(DESTDIR)$(PREFIX)/etc/srfirewall
|
||||||
cp -r bin/* $(DESTDIR)$(PREFIX)/bin/
|
cp -r bin/* $(DESTDIR)$(PREFIX)/bin/
|
||||||
cp -r lib/* $(DESTDIR)$(PREFIX)/lib/srfirewall/
|
cp -r lib/* $(DESTDIR)$(PREFIX)/lib/srfirewall/
|
||||||
|
|
||||||
|
install-etc:
|
||||||
cp -r etc/* $(DESTDIR)$(PREFIX)/etc/srfirewall/
|
cp -r etc/* $(DESTDIR)$(PREFIX)/etc/srfirewall/
|
||||||
|
|
||||||
install-docs:
|
install-docs:
|
||||||
|
|
|
@ -19,7 +19,7 @@
|
||||||
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
# along with this program. If not, see <http://www.gnu.org/licenses/>.
|
||||||
|
|
||||||
# Static config options, normally do not need to change
|
# Static config options, normally do not need to change
|
||||||
FW_VERSION="2.0 PreAlpha 1"
|
FW_VERSION="2.0 Alpha 2"
|
||||||
|
|
||||||
# Important directory locations
|
# Important directory locations
|
||||||
FWPREFIX="/usr/local"
|
FWPREFIX="/usr/local"
|
||||||
|
|
|
@ -7,5 +7,6 @@
|
||||||
%:
|
%:
|
||||||
dh $@
|
dh $@
|
||||||
|
|
||||||
#override_dh_auto_install:
|
override_dh_auto_install:
|
||||||
# $(MAKE) DESTDIR=$$(pwd)/debian/srfirewall PREFIX=/usr install
|
$(MAKE) DESTDIR=$$(pwd)/debian/srfirewall PREFIX=/usr install
|
||||||
|
$(MAKE) DESTDIR=$$(pwd)/debian/srfirewall PREFIX=/usr install-etc
|
||||||
|
|
Loading…
Reference in New Issue