| Getting Started |
Make File Example Code
The following Make File example codes are copied from the Hello example on the
srcdir = .
LDFLAGS =
CFLAGS =
# Change these if necessary
CC=
all: hello
hello:
$(CC)
clean:
rm
| Getting Started |
The following Make File example codes are copied from the Hello example on the
srcdir = .
LDFLAGS =
# Change these if necessary
CC=
all: hello
hello:
$(CC)
clean:
rm