~ubuntu-branches/ubuntu/lucid/samba/lucid-proposed

« back to all changes in this revision

Viewing changes to examples/LDAP/smbldap-tools/mkntpwd/Makefile

  • Committer: Bazaar Package Importer
  • Author(s): Adam Conrad
  • Date: 2005-07-21 17:53:23 UTC
  • mfrom: (0.1.1 upstream)
  • Revision ID: james.westby@ubuntu.com-20050721175323-m3oh6aoigywohfnq
Tags: 3.0.14a-6ubuntu1
Resynchronise with Debian, resolving merge conflicts (#12360)

Show diffs side-by-side

added added

removed removed

Lines of Context:
1
 
# Makefile for l0phtcrack - mudge@l0pht.com 11/1/96
2
 
 
3
 
# C compiler
4
 
#CC=cc
5
 
CC=gcc
6
 
 
7
 
# Uncomment the following to add symbols to the code for debugging
8
 
#DEBUG=-g -Wall -D_DEBUG
9
 
#DEBUG=-D_DEBUG
10
 
 
11
 
# Optimization for the compiler
12
 
#OPTIMIZE=
13
 
OPTIMIZE=-O2
14
 
 
15
 
# Choose your architecture
16
 
#  note that if you are on a big-endian machine like SUN's
17
 
#  I haven't tweaked the mem-cmp's and md4 stuff to be in 
18
 
#  the correct order yet. You're on your own right now.
19
 
#
20
 
# FreeBSD
21
 
ARCH=-DMPU8086 
22
 
STATIC=
23
 
XLIBS=
24
 
#
25
 
# SUNOS
26
 
#ARCH=-DBIGENDIAN
27
 
#STATIC=
28
 
#OPTIMIZE=-O2
29
 
#XLIBS=
30
 
#
31
 
# ULTRA_SPARC w/ native compiler
32
 
#ARCH=-DBIGENDIAN
33
 
#STATIC=
34
 
#OPTIMIZE=-fast -xO4 -xdepend -xchip=ultra -xarch=v8plus
35
 
#XLIBS=
36
 
#
37
 
# SunOS/Solaris w/gcc
38
 
#ARCH=-DBIGENDIAN -DTEST
39
 
#STATIC=
40
 
#OPTIMIZE=-O2
41
 
#XLIBS=
42
 
#
43
 
# NeXTStep 3.2
44
 
#CC=cc
45
 
#ARCH=-DBIGENDIAN
46
 
#STATIC=-Bstatic
47
 
#OPTIMIZE=
48
 
#XLIBS=
49
 
 
50
 
CFLAGS= $(DEBUG) $(OPTIMIZE) $(ARCH) $(VISUAL) $(PERMUTE) $(STATIC) 
51
 
 
52
 
OBJS = getopt.o        md4.o           mkntpwd.o       smbdes.o
53
 
 
54
 
mkntpwd: $(OBJS)
55
 
        $(CC) $(CFLAGS) $(XLIBS) -o mkntpwd $(OBJS)
56
 
 
57
 
clean:
58
 
        rm -f core *.o mkntpwd
59
 
 
60
 
install: mkntpwd
61
 
        install -m 555 mkntpwd $(PREFIX)/sbin/mkntpwd
62