7 lines
71 B
Makefile
7 lines
71 B
Makefile
|
TARGET = main.elf
|
||
|
SRCS = main.cc
|
||
|
|
||
|
all: $(TARGET)
|
||
|
|
||
|
include ../config.mk
|