Simple single-color 8x8x8 LED Cube with AVRs
Você não pode selecionar mais de 25 tópicos
Os tópicos devem começar com uma letra ou um número, podem incluir traços ('-') e podem ter até 35 caracteres.
12345678910111213141516171819 |
- CC = gcc
- SRC = main.c
- SRC += serial.c
-
- TARGET = uploadTest
-
- OBJ = $(SRC:.c=.o)
-
- all: $(TARGET)
-
- $(TARGET): $(OBJ)
- $(CC) -o $(TARGET) $(OBJ)
-
- %.o: %.c
- $(CC) -x c -c $< -o $@
-
- clean:
- $(RM) *.o
- $(RM) $(TARGET)
|