diff options
Diffstat (limited to 'fpga/xilinx/programmer/svfplayer/raspberry_pi/Makefile')
-rw-r--r-- | fpga/xilinx/programmer/svfplayer/raspberry_pi/Makefile | 47 |
1 files changed, 47 insertions, 0 deletions
diff --git a/fpga/xilinx/programmer/svfplayer/raspberry_pi/Makefile b/fpga/xilinx/programmer/svfplayer/raspberry_pi/Makefile new file mode 100644 index 0000000..176b0a3 --- /dev/null +++ b/fpga/xilinx/programmer/svfplayer/raspberry_pi/Makefile @@ -0,0 +1,47 @@ +# Copyright (C) 2012 Timothy Pearson +# +# Permission to use, copy, modify, and/or distribute this software for any +# purpose with or without fee is hereby granted, provided that the above +# copyright notice and this permission notice appear in all copies. +# +# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES +# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF +# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR +# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES +# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN +# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF +# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. + +AR = ar +RANLIB = ranlib +CC = gcc + +CFLAGS += -Wall -Os -ggdb -MD +#CFLAGS += -Wextra -Wno-unused-parameter -Werror + +help: + @echo "" + @echo "Usage:" + @echo "" + @echo " $(MAKE) xsvf-rpi" + @echo " .... build xsvf-rpi" + @echo "" + @echo " $(MAKE) all" + @echo " .... build everything" + @echo "" + @echo " $(MAKE) install" + @echo " .... install everything in /usr/" + @echo "" + +all: xsvf-rpi + +install: all + install -Dt /usr/bin/ xsvf-rpi + +xsvf-rpi: /usr/lib/libxsvf.a xsvf-rpi.o + +clean: + rm -f xsvf-rpi.o + +-include *.d + |