Possibly a stupid question. But I've been digging through this code (and stack overflow for answers) for a couple days now, and all I've determined is that I have an error with line 68, or a line that effects it.
Output:
me@mycpu:~/Documents/ps/cstuff$ make -f makefileEDIT
makefileEDIT:68: *** missing separator. Stop.
I'm using gcc in Ubuntu. Programmer gadget is an AVRISP II, working with an Atmel AtTiny 84
Top of the code that didn't fit in the selection:
# Name: Makefile
#
# A simple program for the ATtiny84 that blinks an LED.
#
# electronut.in
DEVICE = attiny84
CLOCK = 8000000
PROGRAMMER = -c avrisp2
OBJECTS = main.o
And, yes, I totally copied this code from a tutorial site and changed the name of the programmer to match what I have. And I've been reading general info online about this stuff (and I've learned a bit about it so far), but no go.