mirror of
https://github.com/ZDoom/raze-gles.git
synced 2024-11-10 23:02:03 +00:00
Makefile: add target 'print-compiler-options'.
May come in handy at times. BUILD_LUNATIC. git-svn-id: https://svn.eduke32.com/eduke32@4194 1a8010ca-5511-0410-912e-c29ae57300e0
This commit is contained in:
parent
1628debd7c
commit
a7ed1a6fe9
1 changed files with 9 additions and 0 deletions
|
@ -438,6 +438,15 @@ $(OBJ)/%.$o: $(SRC)/%.c
|
|||
$(COMPILE_STATUS)
|
||||
if $(COMPILER) $(OURCFLAGS) -c $< -o $@; then $(COMPILE_OK); else $(COMPILE_FAILED); fi
|
||||
|
||||
#### Frama-C and related
|
||||
|
||||
.PHONY: print-compiler-options
|
||||
print-compiler-options:
|
||||
@echo "$(OURCFLAGS)"
|
||||
|
||||
#frama-c-check:
|
||||
# frama-c -machdep x86_64 -cpp-command "gcc -C -E $(OURCFLAGS)" -no-annot -val source/anim.c
|
||||
|
||||
#### Utilities
|
||||
|
||||
$(OBJ)/%.$o: $(SRC)/util/%.c
|
||||
|
|
Loading…
Reference in a new issue