diff options
| author | Mark Eichin <eichin@mit.edu> | 1994-06-09 23:07:20 +0000 |
|---|---|---|
| committer | Mark Eichin <eichin@mit.edu> | 1994-06-09 23:07:20 +0000 |
| commit | bfada90ca02dc1dc5c554eddf8ccba269e24ab99 (patch) | |
| tree | ce283363544a1d7b961c85ee1b8d391bd25b48aa /src/util | |
| parent | b53c50df36fcea380b72b94bce54ae9b1521b93a (diff) | |
| download | krb5-bfada90ca02dc1dc5c554eddf8ccba269e24ab99.tar.gz krb5-bfada90ca02dc1dc5c554eddf8ccba269e24ab99.tar.xz krb5-bfada90ca02dc1dc5c554eddf8ccba269e24ab99.zip | |
autoconf enhancements for kerberos
git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@3690 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/util')
| -rw-r--r-- | src/util/Makefile.in | 13 | ||||
| -rw-r--r-- | src/util/configure.in | 6 | ||||
| -rw-r--r-- | src/util/unifdef/Makefile.in | 26 | ||||
| -rw-r--r-- | src/util/unifdef/configure.in | 3 |
4 files changed, 48 insertions, 0 deletions
diff --git a/src/util/Makefile.in b/src/util/Makefile.in new file mode 100644 index 000000000..2cc270244 --- /dev/null +++ b/src/util/Makefile.in @@ -0,0 +1,13 @@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +DEFS = @DEFS@ +LIBS = @LIBS@ + +CFLAGS = -g +LDFLAGS = -g + +SUBDIRS = @SUBDIRS@ + + + diff --git a/src/util/configure.in b/src/util/configure.in new file mode 100644 index 000000000..e2387b44c --- /dev/null +++ b/src/util/configure.in @@ -0,0 +1,6 @@ +AC_INIT(configure.in) +CONFIG_DIRS(unifdef et ss) +MAKE_SUBDIRS("making",all) +MAKE_SUBDIRS("cleaning",clean) +CONFIG_RULES +AC_OUTPUT(Makefile,[EXTRA_RULES]) diff --git a/src/util/unifdef/Makefile.in b/src/util/unifdef/Makefile.in new file mode 100644 index 000000000..88765b4f3 --- /dev/null +++ b/src/util/unifdef/Makefile.in @@ -0,0 +1,26 @@ +srcdir = @srcdir@ +VPATH = @srcdir@ + +DEFS = @DEFS@ +LIBS = @LIBS@ + +CFLAGS = -g $(DEFS) $(LOCALINCLUDE) +LDFLAGS = -g + +all:: + +unifdef: unifdef.o + $(CC) $(CFLAGS) -o unifdef unifdef.o + +unifdef.o: unifdef.c + +all:: unifdef + + +clean:: + $(RM) unifdef.o unifdef + +includes:: unifdef + +install:: + $(INSTALLPROG) unifdef ${DESTDIR}$(PROGDIR)/unifdef diff --git a/src/util/unifdef/configure.in b/src/util/unifdef/configure.in new file mode 100644 index 000000000..f56fa1022 --- /dev/null +++ b/src/util/unifdef/configure.in @@ -0,0 +1,3 @@ +AC_INIT(unifdef.c) +CONFIG_RULES +AC_OUTPUT(Makefile,[EXTRA_RULES]) |
