How to get applet/wiring.0 part to work

No rule to make target 'applet/wiring.o', needed by 'applet/Marlin.elf'. Stop.

Okay what is this part mean ? As there is nothing in the instructions as to what this is and how to fix it

This defines whether Liquid_TWI2 support will be built

LIQUID_TWI2 ?= 0

this defines if Wire is needed

WIRE ?= 0
What goes here ?

This works so far ..

This defined the board you are compiling for (see Configuration.h for the options)

HARDWARE_MOTHERBOARD = 33

Arduino source install directory, and version number

ARDUINO_INSTALL_DIR = /arduino/ardunio-1.6.5-r5/java
ARDUINO_VERSION = 105

You can optionally set a path to the avr-gcc tools. Requires a trailing slash. (ex: /usr/local/avr-gcc/bin)

AVR_TOOLS_PATH = /usr/local/avr-gcc/bin

#Programmer configuration
UPLOAD_RATE = 250000
AVRDUDE_PROGRAMMER = arduino
UPLOAD_PORT = /dev/ttyUSB0

#Directory used to build files in, contains all the build files, from object files to the final hex file.
BUILD_DIR = applet ( Have no Ideal as to if this is right )

What are you talking about ?

If you are quoting from some document you need to post a link to it and explain the background.

..R

I did put the documentation there Added the entire makefile and its edits I have made and ask questions on the area's as I have no ideal as to what to add to those spot's
This is the file in Marlin WHICH MUST be edited to make Arduino work and be up loaded as some file in
configuration.h file . . So Until there is some kind of an example my 3 D printer is totally useless ! !
MatterCotrol connects and so does Repeiter-Host but the GT-2560 does not know jack as to where things are at !
And this is the place that knows what should be in the makefile so the make can make program work ! ! . .

4lynne2:
I did put the documentation there

Where ? I don't see any link to documentation

This is the file in Marlin WHICH MUST be edited to make Arduino work and be up loaded as some file in
configuration.h file

I think you need to ask the Marlin people, or maybe on the RepRap Forum.

This Forum is to assist people writing their own programs. Marlin is a very complex program.

...R

Off in another thread: http://forum.arduino.cc/index.php?topic=349025.msg2410075#msg2410075
Presumably this has something to do the the "Marlin" 3d printer firmware: Marlin - RepRap

No rule to make target 'applet/wiring.o', needed by 'applet/Marlin.elf'. Stop.

This is ... not an error message that should come out of Arduino in any recent release. The applet/ directories went away back before version 1.0.

I don't know anything about marlin, but I suspect you are suffering from "version creep", where the code you're trying to use an the instructions that go with it no longer match the version of Arduino that you have downloaded. The reprap page says:

Install the arduino software IDE/toolset, version 1.0.5 or 1.0.6 from http://www.arduino.cc/en/Main/Software

Did you in fact install that (old) version? If not, you should probably delete everything and start over.

I did not have a Link to add so I did a copy and paste of what I did in gedit to the file and ask what goes in spots ( inside of these )

Okay got Slic3r to finally install so still need the Arduino IDE to work the Marlin-PI3_Pro_C file is still not working either have no I deal as to how to fix the following area

#Directory used to build files in, contains all the build files, from object files to the final hex file.
BUILD_DIR = applet ( what goes here )

This defines whether Liquid_TWI2 support will be built

LIQUID_TWI2 ?= 0 ( have no Ideal as to what goes here )

this defines if Wire is needed

WIRE ?= 0 ( Same thing here )

part of the makefile edits I do not know how to fix . .

westfw:
Off in another thread: http://forum.arduino.cc/index.php?topic=349025.msg2410075#msg2410075
Presumably this has something to do the the "Marlin" 3d printer firmware: Marlin - RepRap
This is ... not an error message that should come out of Arduino in any recent release. The applet/ directories went away back before version 1.0.

I don't know anything about marlin, but I suspect you are suffering from "version creep", where the code you're trying to use an the instructions that go with it no longer match the version of Arduino that you have downloaded. The reprap page says:Did you in fact install that (old) version? If not, you should probably delete everything and start over.

[/quote ]

I have the latest one 1.6.5 and the instructions are lacking as I have read almost every file in gedit ( used in Linux to edit files ) I use Ubuntu 15.04 not windows stuff is out dated and has to many problems to deal with like bots, Malware, and virus's ! . . Oh yeah I can run all of your windows programs in Linux ( Wine or Virtual Box ) And Arduino uses the Marlin edits to get things working together. . It says there I need to down load newest version of Marlin and do the edits ! And this is their blog to get answers from . .!

I have the latest one 1.6.5 and the instructions are lacking as I have read almost every file in gedit ( used in Linux to edit files ) I use Ubuntu 15.04 not windows stuff is out dated and has to many problems to deal with like bots, Malware, and virus's ! . . Oh yeah I can run all of your windows programs in Linux ( Wine or Virtual Box ) And Arduino uses the Marlin edits to get things working together. . It says there I need to down load newest version of Marlin and do the edits ! And this is their blog to get answers from . .!

You can easily install different versions of the Arduino IDE on your PC (especially with Linux). They are just Java programs. As @westfw said, the simplest solution may be to use the version of the IDE that was current when the Marlin software was created.

...R