You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
- #!/usr/bin/make -f
- # Makefile for DPF examples #
- # ------------------------- #
- # Created by falkTX
- #
-
- include dpf/Makefile.base.mk
-
- all: libs examples
-
- # --------------------------------------------------------------
-
- libs:
- $(MAKE) -C dpf/dgl
-
- examples: libs
- $(MAKE) build -C examples
-
- # --------------------------------------------------------------
-
- clean:
- $(MAKE) clean -C dpf/dgl
- $(MAKE) clean -C examples
-
- # --------------------------------------------------------------
-
- .PHONY: examples
|