mirror of
git://projects.qi-hardware.com/nn-usb-fpga.git
synced 2025-04-21 12:27:27 +03:00
Adding plasma example
This commit is contained in:
24
plasma/tools/Makefile
Normal file
24
plasma/tools/Makefile
Normal file
@@ -0,0 +1,24 @@
|
||||
CC_X86 = gcc -Wall -O -g
|
||||
CP = cp
|
||||
RM = rm -rf
|
||||
DWIN32 =
|
||||
BIN_MIPS =
|
||||
VHDL_DIR = ../logic
|
||||
LINUX_PWD = ./
|
||||
CONVERT_BIN = $(LINUX_PWD)convert_bin
|
||||
|
||||
CFLAGS = -O2 -Wall -c -s
|
||||
|
||||
all: ramimage mlite
|
||||
rm -rf ../bin
|
||||
mkdir ../bin; mv ramimage ../bin; mv mlite ../bin
|
||||
|
||||
clean:
|
||||
-$(RM) *.o *.obj *.map *.lst *.hex *.txt
|
||||
|
||||
ramimage: ramimage.c
|
||||
@$(CC_X86) -o ramimage ramimage.c
|
||||
|
||||
mlite: mlite.c
|
||||
@$(CC_X86) -o mlite mlite.c
|
||||
|
||||
Reference in New Issue
Block a user