Good Job
3 comments from me right now:
1. in the Makefile:
should be replaced by
(It isnt serious, just suppresses the warnings if the directories already exist)
2. What byacc are you using? Mine wouldnt accept the -o option. I had to remove it and copy the files manually.
3. There should be a variable like WINE_INCLUDE_DIR (or something like that) in the Makefile, pointing to the include dir of the winelib, because then it would be easier to change the Path of the winelib include files.
3 comments from me right now:
1. in the Makefile:
Code:
-mkdir dll -mkdir dll/map
Code:
-mkdir -p dll -mkdir -p dll/map
2. What byacc are you using? Mine wouldnt accept the -o option. I had to remove it and copy the files manually.
3. There should be a variable like WINE_INCLUDE_DIR (or something like that) in the Makefile, pointing to the include dir of the winelib, because then it would be easier to change the Path of the winelib include files.
Comment