Skip to content

Commit

Permalink
Add makefile for imet
Browse files Browse the repository at this point in the history
  • Loading branch information
shenki committed Feb 8, 2021
1 parent 2e86202 commit 20832ae
Showing 1 changed file with 18 additions and 0 deletions.
18 changes: 18 additions & 0 deletions imet/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,18 @@
# Makefile for imet programs

# Auto_RX version number - needs to match the contents of autorx/__init__.py
# This can probably be done automatically.
#AUTO_RX_VERSION="\"1.4.1-beta8\""
AUTO_RX_VERSION := $(shell PYTHONPATH=../auto_rx python -m autorx.version)

CFLAGS = -Ofast -Wall -Wno-unused-variable -DVER_JSN_STR=\"$(AUTO_RX_VERSION)\"
LDLIBS = -lm

PROGRAMS := imet1rs_dft

all: $(PROGRAMS)

imet1rs_dft: imet1rs_dft.o

clean:
$(RM) $(PROGRAMS) $(PROGRAMS:=.o)

0 comments on commit 20832ae

Please sign in to comment.