Programmer’s Guide |
Special Note
1.
2.Currently,
Make File Example
The following Makefile file example codes are copied from the Hello example on
CC
OBJS = $(SOURCES:.c=.o)
all: hello
hello: $(OBJS)
$(CC)
clean:
rm
Programmer’s Guide |
1.
2.Currently,
The following Makefile file example codes are copied from the Hello example on
CC
OBJS = $(SOURCES:.c=.o)
all: hello
hello: $(OBJS)
$(CC)
clean:
rm