mirror of
https://github.com/samba-team/samba.git
synced 2024-12-27 03:21:53 +03:00
15c1801a5c
The Web 2.0, async client tools were really interesting, but without
developer backing they remain impossible to support into a release.
The most interesting app was the LDB browser, and I intend to replace
this with phpLdapAdmin, preconfigured for Apache during provision.
This also removes the need to 'compile' SWAT on SVN checkouts.
Andrew Bartlett
(This used to be commit cda965e908
)
25 lines
965 B
Makefile
25 lines
965 B
Makefile
[SUBSYSTEM::DYNCONFIG]
|
|
OBJ_FILES = dynconfig.o
|
|
|
|
# set these to where to find various files
|
|
# These can be overridden by command line switches (see smbd(8))
|
|
# or in smb.conf (see smb.conf(5))
|
|
CONFIGFILE = $(CONFIGDIR)/smb.conf
|
|
PKGCONFIGDIR = $(LIBDIR)/pkgconfig
|
|
LMHOSTSFILE = $(CONFIGDIR)/lmhosts
|
|
|
|
PATH_FLAGS = -DCONFIGFILE=\"$(CONFIGFILE)\" \
|
|
-DBINDIR=\"$(BINDIR)\" -DLMHOSTSFILE=\"$(LMHOSTSFILE)\" \
|
|
-DLOCKDIR=\"$(LOCKDIR)\" -DPIDDIR=\"$(PIDDIR)\" -DDATADIR=\"$(DATADIR)\" \
|
|
-DLOGFILEBASE=\"$(LOGFILEBASE)\" \
|
|
-DCONFIGDIR=\"$(CONFIGDIR)\" -DNCALRPCDIR=\"$(NCALRPCDIR)\" \
|
|
-DSWATDIR=\"$(SWATDIR)\" \
|
|
-DPRIVATE_DIR=\"$(PRIVATEDIR)\" \
|
|
-DMODULESDIR=\"$(MODULESDIR)\" -DJSDIR=\"$(JSDIR)\" \
|
|
-DTORTUREDIR=\"$(TORTUREDIR)\" \
|
|
-DSETUPDIR=\"$(SETUPDIR)\" -DWINBINDD_SOCKET_DIR=\"$(WINBINDD_SOCKET_DIR)\"
|
|
|
|
dynconfig.o: dynconfig.c Makefile
|
|
@echo Compiling $<
|
|
@$(CC) `$(PERL) $(srcdir)/script/cflags.pl $@` $(CFLAGS) $(PICFLAG) $(PATH_FLAGS) -c $< -o $@
|