diff options
author | Andrew Tridgell <tridge@samba.org> | 2000-05-12 06:29:29 +0000 |
---|---|---|
committer | Andrew Tridgell <tridge@samba.org> | 2000-05-12 06:29:29 +0000 |
commit | 5e2a0b3cb9be19596e9885371b3dc96fc8fda1b2 (patch) | |
tree | 80b63d57449466ec9e1c9d5e7840443924b38add /examples/appliance/Makefile | |
parent | a423c7c5f21dc4046530b85482dee88dcfcbf070 (diff) | |
download | samba-5e2a0b3cb9be19596e9885371b3dc96fc8fda1b2.tar.gz samba-5e2a0b3cb9be19596e9885371b3dc96fc8fda1b2.tar.xz samba-5e2a0b3cb9be19596e9885371b3dc96fc8fda1b2.zip |
compile with -O2
Diffstat (limited to 'examples/appliance/Makefile')
-rw-r--r-- | examples/appliance/Makefile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/examples/appliance/Makefile b/examples/appliance/Makefile index 18b0b4c8c5d..b11f85b4119 100644 --- a/examples/appliance/Makefile +++ b/examples/appliance/Makefile @@ -5,8 +5,8 @@ CONFIGOPTS=--with-pam --prefix=$(PREFIX) all: headb tngb config: - (cd head/source; CFLAGS="-Wall -g" ./configure $(CONFIGOPTS)) - (cd tng; CFLAGS="-Wall -g" ./configure $(CONFIGOPTS) --enable-shared=no) + (cd head/source; CFLAGS="-Wall -O2 -g" ./configure $(CONFIGOPTS)) + (cd tng; CFLAGS="-Wall -O2 -g" ./configure $(CONFIGOPTS) --enable-shared=no) headb: (cd head/source; make) |