Commit 1b61a40e by Kresten Krab Thorup

_forward.c renamed to xforward.c

From-SVN: r4276
parent 503e4b87
...@@ -78,17 +78,17 @@ sendmsg.o: sendmsg.c fflags ...@@ -78,17 +78,17 @@ sendmsg.o: sendmsg.c fflags
$(GCC_FOR_TARGET) `cat fflags` -c $(GCC_CFLAGS) $(SUBDIR_INCLUDES) $(srcdir)/objc/sendmsg.c $(GCC_FOR_TARGET) `cat fflags` -c $(GCC_CFLAGS) $(SUBDIR_INCLUDES) $(srcdir)/objc/sendmsg.c
## Next to are for heuristics on forwarding mechanism... ## Next to are for heuristics on forwarding mechanism...
_forward: _forward.c xforward: xforward.c
-$(GCC_FOR_TARGET) -c $(GCC_CFLAGS) $(SUBDIR_INCLUDES) $(srcdir)/objc/_forward.c -$(GCC_FOR_TARGET) -c $(GCC_CFLAGS) $(SUBDIR_INCLUDES) $(srcdir)/objc/xforward.c
-$(GCC_FOR_TARGET) ./_forward.o -o _forward -$(GCC_FOR_TARGET) ./xforward.o -o xforward
if [ ! -f ./_forward ]; then touch ./_forward; fi if [ ! -f ./xforward ]; then touch ./xforward; fi
fflags: _forward fflags: xforward
-rm -f fflags -rm -f fflags
-if [ -s ./_forward ]; then ./_forward > fflags; else touch fflags; fi -if [ -s ./xforward ]; then ./xforward > fflags; else touch fflags; fi
mostlyclean: mostlyclean:
-rm -f *.o libobjc.a _forward fflags -rm -f *.o libobjc.a xforward fflags
clean: mostlyclean clean: mostlyclean
distclean: mostlyclean distclean: mostlyclean
extraclean: mostlyclean extraclean: mostlyclean
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment