15 lines
209 B
Makefile
15 lines
209 B
Makefile
|
APP = gpio-demo
|
||
|
|
||
|
# Add any other object files to this list below
|
||
|
APP_OBJS = gpio-demo.o
|
||
|
|
||
|
all: $(APP)
|
||
|
|
||
|
$(APP): $(APP_OBJS)
|
||
|
$(CC) $(LDFLAGS) -o $@ $(APP_OBJS) $(LDLIBS)
|
||
|
|
||
|
clean:
|
||
|
-rm -f $(APP) *.elf *.gdb *.o
|
||
|
|
||
|
|