File: Makefile

package info (click to toggle)
wolfssl 5.8.4-1
  • links: PTS
  • area: main
  • in suites: forky, sid
  • size: 117,604 kB
  • sloc: ansic: 1,584,954; asm: 481,206; sh: 11,586; cs: 6,596; xml: 3,878; perl: 3,291; makefile: 2,058; ada: 1,891; javascript: 748; python: 636; cpp: 131; ruby: 118; objc: 80; tcl: 73
file content (18 lines) | stat: -rw-r--r-- 471 bytes parent folder | download | duplicates (7)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
BUILD_DIR = ./Build

all: WolfSSLStaticLib WolfCryptTest WolfCryptBench WolfSSLClient WolfSSLServer

WolfCryptTest:
	$(MAKE) -f Makefile.test
WolfCryptBench:
	$(MAKE) -f Makefile.bench
WolfSSLClient:
	$(MAKE) -f Makefile.client
WolfSSLServer:
	$(MAKE) -f Makefile.server
WolfSSLStaticLib:
	$(MAKE) -f Makefile.static

clean:
	rm -f $(BUILD_DIR)/*.elf $(BUILD_DIR)/*.hex $(BUILD_DIR)/*.map
	rm -f $(BUILD_DIR)/*.o $(BUILD_DIR)/*.a $(BUILD_DIR)/*.sym $(BUILD_DIR)/*.disasm