User`s manual
Manuals
Brands
Moxa Technologies Manuals
Network Card
UC-7110
11
12
13
14
15
16
17
18
19
20
UC-7101/7110/7112 Soft
ware User’s Manual
Getting Started
2-10
LIBS
=
CFLAGS =
# Change these if necessary
CC = arm-elf-gcc
CPP = arm-elf-gcc -E
all: hello
hello:
$(CC) -o $@ $(CFLAGS) $(LDFLAGS) $(LIBS) $@.c
clean:
rm -f $(OBJS) hello core *.gdb
1
...
...
16
17
18
19
20
...
...
46