Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 2 additions & 0 deletions zynq7000/XAPP1251/src/.gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@
# Omit the compiled executable
xvcServer_mmap
19 changes: 19 additions & 0 deletions zynq7000/XAPP1251/src/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
export CROSS_COMPILE := aarch64-linux-gnu-
export ARCH := arm64
MYCC := $(CROSS_COMPILE)gcc

DRIVER := xilinx_xvc_driver
XVCSERVER := xvcServer

.PHONY: mmap
mmap: $(XVCSERVER)_mmap

.PHONY: all
all: mmap

$(XVCSERVER)_mmap: $(XVCSERVER).c
$(MYCC) -Wall -o $@ $^

.PHONY: clean
clean:
rm -f $(XVCSERVER)_mmap
Loading