Commit in reactos/tools/winebuild on MAIN | |||
Makefile | +2 | -1 | 1.5 -> 1.6 |
Sylvain Petreolle <spetreolle@yahoo.fr> - rules.mak is included too late in tools/winebuild/Makefile, which makes TARGET, "all:", CLEAN_FILES and HOST_CFLAGS wrong.
diff -u -r1.5 -r1.6 --- Makefile 23 Sep 2004 20:27:30 -0000 1.5 +++ Makefile 27 Sep 2004 08:15:07 -0000 1.6 @@ -3,6 +3,8 @@
# PATH_TO_TOP = ../..
+include $(PATH_TO_TOP)/rules.mak +
TARGET = winebuild$(EXE_POSTFIX) all: $(TARGET)
@@ -39,4 +41,3 @@
.PHONY: clean
-include $(PATH_TO_TOP)/rules.mak