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 | 5379476d4d38ea164ebda5f39cadb68c2350c399 (patch) | |
tree | 47b91745bde82ec3700de82b04c5040fd6637eca /examples/appliance | |
parent | 4cdc54ba244f72a4a143e7a0e0c0b4fcfaa13d3c (diff) | |
download | samba-5379476d4d38ea164ebda5f39cadb68c2350c399.tar.gz samba-5379476d4d38ea164ebda5f39cadb68c2350c399.tar.xz samba-5379476d4d38ea164ebda5f39cadb68c2350c399.zip |
compile with -O2
(This used to be commit 5e2a0b3cb9be19596e9885371b3dc96fc8fda1b2)
Diffstat (limited to 'examples/appliance')
-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 18b0b4c8c5..b11f85b411 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) |