summaryrefslogtreecommitdiffstats
path: root/src/config/libobj.in
diff options
context:
space:
mode:
authorTom Yu <tlyu@mit.edu>2003-03-03 07:09:46 +0000
committerTom Yu <tlyu@mit.edu>2003-03-03 07:09:46 +0000
commitd7945a6727cfa39039434d4da63a7080a91cabcd (patch)
tree129a190d2d2a1b1c7375edce2121e7b06b2aa152 /src/config/libobj.in
parent5df5c4bb6ffecf8f3ea304209a40f9f5ea1a4989 (diff)
downloadkrb5-d7945a6727cfa39039434d4da63a7080a91cabcd.tar.gz
krb5-d7945a6727cfa39039434d4da63a7080a91cabcd.tar.xz
krb5-d7945a6727cfa39039434d4da63a7080a91cabcd.zip
Remove ADD_DEF and uses thereof, and move the appropriate symbols to
AC_DEFINE'ed things or to Makefile.in files. Remove explicit settings of CPPFLAGS. These allow CPPFLAGS to be a user parameter. Also, add CFLAGS to the CC_LINK variables, so they can control usage of the compiler to link programs. ticket: 677 git-svn-id: svn://anonsvn.mit.edu/krb5/trunk@15214 dc483132-0cff-0310-8789-dd5450dbe970
Diffstat (limited to 'src/config/libobj.in')
-rw-r--r--src/config/libobj.in6
1 files changed, 2 insertions, 4 deletions
diff --git a/src/config/libobj.in b/src/config/libobj.in
index 7a5fb06ca5..79b4c01638 100644
--- a/src/config/libobj.in
+++ b/src/config/libobj.in
@@ -9,11 +9,9 @@
.SUFFIXES: .c .so .po
.c.so:
- $(CC) $(DEFS) $(DEFINES) $(PICFLAGS) $(LOCALINCLUDES) $(CPPFLAGS) $(CFLAGS) -c $< -o $*.so.o && \
- $(MV) $*.so.o $*.so
+ $(CC) $(PICFLAGS) $(ALL_CFLAGS) -c $< -o $*.so.o && $(MV) $*.so.o $*.so
.c.po:
- $(CC) $(DEFS) $(DEFINES) $(PROFFLAGS) $(LOCALINCLUDES) $(CPPFLAGS) $(CFLAGS) -c $< -o $*.po.o && \
- $(MV) $*.po.o $*.po
+ $(CC) $(PROFFLAGS) $(ALL_CFLAGS) -c $< -o $*.po.o && $(MV) $*.po.o $*.po
# rules to generate object file lists