You cannot select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
CMSIS-DSP/ComputeGraph/examples/cyclo/Makefile

18 lines
381 B
Makefile

# Makefile for MSVC compiler on Windows
SHELL = cmd
CC = cl.exe
RM = del /Q /F
INCLUDES = /Igenerated /I../../cg/src /I.
WINFLAGS = /DWIN32 /D_WINDOWS /EHsc /Zi /Ob0 /Od /RTC1 -MDd
CFLAGS = $(INCLUDES) $(WINFLAGS)
all:
$(CC) /Fecyclo.exe $(CFLAGS) generated/scheduler.cpp main.cpp
clean:
$(RM) main.obj
$(RM) scheduler.obj
$(RM) cyclo.ilk
$(RM) cyclo.exe
$(RM) *.pdb