File: Makefile

package info (click to toggle)
friso 1.6.4%2Bds-2
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 5,536 kB
  • sloc: ansic: 3,512; makefile: 206; ml: 48; sh: 18
file content (20 lines) | stat: -rw-r--r-- 564 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
# Makefile for compiling Friso out of source directory
# @Author	chenxin<chenxin619315@gmail.com>

# Targets start here.
all testing static share install clean:
	cd src && $(MAKE) $@

# echo config parameters
echo:
	@echo "INSTALL_TOP= $(INSTALL_TOP)"
	@echo "INSTALL_BIN= $(INSTALL_BIN)"
	@echo "INSTALL_INC= $(INSTALL_INC)"
	@echo "INSTALL_LIB= $(INSTALL_LIB)"
	@echo "INSTALL_EXEC= $(INSTALL_EXEC)"
	@echo "INSTALL_DATA= $(INSTALL_DATA)"

# list targets that do not create files (but not all makes understand .PHONY)
.PHONY: all clean echo

# (end of Makefile)