summaryrefslogtreecommitdiffstats
path: root/meta-xilinx-demos/recipes-examples/gpio-demo/files/Makefile
blob: 9106be1bd52d21feeacf9530b23aaa06bc87417b (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
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