Skip to content
Snippets Groups Projects
Commit 0bd77d86 authored by Mike Collins's avatar Mike Collins
Browse files

Flexible compiler flag for testing added

parent 59785ddf
No related branches found
No related tags found
No related merge requests found
......@@ -57,14 +57,14 @@ bin:
# mv ../rigal_scratch/Preloaded-examples-release-4 ../rigal_scratch/examples
../bin/rc:$(RCF_SRC) rc_.o
cc $(CCFLAGS) -o ../bin/rc rc_.o $(RCF_SRC)
$(COMPILER) $(CCFLAGS) -o ../bin/rc rc_.o $(RCF_SRC)
../bin/ic:$(ICF_SRC)
cc $(CCFLAGS) -o ../bin/ic $(ICF_SRC) $(LIBS)
$(COMPILER) $(CCFLAGS) -o ../bin/ic $(ICF_SRC) $(LIBS)
../bin/v:$(RCF_SRC) v.o
cc $(CCFLAGS) -o ../bin/v v.o $(RCF_SRC) $(LIBS)
$(COMPILER) $(CCFLAGS) -o ../bin/v v.o $(RCF_SRC) $(LIBS)
../lib/riglib.a:$(CCF_SRC)
@echo '*Starting creating library'
......@@ -75,7 +75,7 @@ bin:
@echo '*Library created'
../bin/anrig:$(INCLIB_SRC) ../lib/riglib.a
cc $(CCFLAGS) -w \
$(COMPILER) $(CCFLAGS) -w \
-Ianrig/ -I../include/\
anrig/xcrg.c anrig/xcrg_0.c\
anrig/xcrg_1.c\
......@@ -91,7 +91,7 @@ bin:
-rm -f anrig/*.o
../bin/genrigd:$(INCLIB_SRC) ../lib/riglib.a
cc $(CCFLAGS) -w \
$(COMPILER) $(CCFLAGS) -w \
-Igenrig/ -I../include/\
genrig/xcrg.c\
genrig/xcrg_1.c\
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment