moved version.h and config.h to include

git-svn-id: svn://svn.h5l.se/heimdal/trunk/heimdal@1497 ec53bebd-3082-4978-b11e-865c3cabbd6b
This commit is contained in:
Assar Westerlund
1997-03-23 13:05:18 +00:00
parent 395297ba77
commit cc553f28a9
21 changed files with 46 additions and 52 deletions

View File

@@ -59,22 +59,7 @@ Wall:
make CFLAGS="-g -Wall -Wno-comment -Wmissing-prototypes -Wmissing-declarations -D__USE_FIXED_PROTOTYPES__"
.c.o:
$(CC) -c $(CPPFLAGS) $(DEFS) -I../.. -I../../include -I$(srcdir) $(CFLAGS) $(PICFLAGS) $<
destest.o: destest.c
$(CC) -c $(CPPFLAGS) $(DEFS) -I../.. -I../../include -I$(srcdir) $(CFLAGS) $<
des.o: des.c
$(CC) -c $(CPPFLAGS) $(DEFS) -I../.. -I../../include -I$(srcdir) $(CFLAGS) $<
rpw.o: rpw.c
$(CC) -c $(CPPFLAGS) $(DEFS) -I../.. -I../../include -I$(srcdir) $(CFLAGS) $<
speed.o: speed.c
$(CC) -c $(CPPFLAGS) $(DEFS) -I../.. -I../../include -I$(srcdir) $(CFLAGS) $<
mdtest.o: mdtest.c
$(CC) -c $(CPPFLAGS) $(DEFS) -I../.. -I../../include -I$(srcdir) $(CFLAGS) $<
$(CC) -c $(CPPFLAGS) $(DEFS) -I../../include -I$(srcdir) $(CFLAGS) $(PICFLAGS) $<
install: all
$(MKINSTALLDIRS) $(libdir)
@@ -123,6 +108,15 @@ $(LIBNAME).$(SHLIBEXT): $(LIBOBJ)
rm -f $@
$(CC) $(CFLAGS) $(PICFLAGS) $(SHARED) -o $@ $(LIBOBJ)
# To make psoriaris make happy we have to mention these files in some
# rule, so we might as well put them here.
mdtest.o: mdtest.c
destest.o: destest.c
des.o: des.c
rpw.o: rpw.c
speed.o: speed.c
mdtest$(EXECSUFFIX): mdtest.o $(LIB)
$(CC) $(LD_FLAGS) $(LDFLAGS) -o $@ mdtest.o -L. -ldes
@@ -138,4 +132,4 @@ rpw$(EXECSUFFIX): rpw.o $(LIB)
speed$(EXECSUFFIX): speed.o $(LIB)
$(CC) $(LD_FLAGS) $(LDFLAGS) -o $@ speed.o -L. -ldes
$(LIBOBJ): ../../config.h
$(LIBOBJ): ../../include/config.h