* Makefile.in: Don't use $< in explicit rules - this should fix

non-GNU makes. Removed GNOME_IDLDIR - it wasn't used.
This commit is contained in:
Pavel Roskin 2000-09-22 00:15:56 +00:00
parent 15535f33a2
commit ee345fa20d
2 changed files with 7 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2000-09-21 Pavel Roskin <proski@gnu.org>
* Makefile.in: Don't use $< in explicit rules - this should fix
non-GNU makes. Removed GNOME_IDLDIR - it wasn't used.
2000-09-14 Pavel Roskin <proski@gnu.org>
* Makefile.in: Compile our own mad.o. Don't link object files.

View File

@ -19,7 +19,6 @@ EXTRALIBS = -L../vfs @LVFS@ -L../gtkedit -lgtkedit @LINTL@
INSTALL = @INSTALL@
INSTALL_PROGRAM = @INSTALL_PROGRAM@
INSTALL_DATA = @INSTALL_DATA@
GNOME_IDLDIR = @GNOME_IDLDIR@
PIXMAPS = \
dev.xpm \
@ -232,10 +231,10 @@ DISTGNOME = \
$(CC) -c $(CPPFLAGS) $(DEFS) $(CFLAGS) $<
main-corba.o: main.c
$(CC) -c -DHAVE_CORBA $(CPPFLAGS) $(DEFS) $(CFLAGS) $< -o main-corba.o
$(CC) -c -DHAVE_CORBA $(CPPFLAGS) $(DEFS) $(CFLAGS) main.c -o main-corba.o
gmount-corba.o: gmount.c
$(CC) -c -DHAVE_CORBA $(CPPFLAGS) $(DEFS) $(CFLAGS) $< -o gmount-corba.o
$(CC) -c -DHAVE_CORBA $(CPPFLAGS) $(DEFS) $(CFLAGS) $(srcdir)/gmount.c -o gmount-corba.o
gcorba.o: gcorba.c $(CORBA_GENERATED)
gmount.o: gmount.c $(MAGICDEV_GENERATED)