File: Makefile

package info (click to toggle)
aflplusplus 4.33c-0.2
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 14,740 kB
  • sloc: ansic: 111,574; cpp: 16,019; sh: 4,766; python: 4,546; makefile: 1,000; javascript: 521; java: 43; sql: 3; xml: 1
file content (10 lines) | stat: -rw-r--r-- 331 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
all:
	$(CC) -no-pie test.c -o test
	$(CC) -fPIC -shared read_into_rdi.c -o read_into_rdi.so

all_mipsel: test.c mipsel_read_into_a0.c
	$(CPU_TARGET_CC) -no-pie test.c -o mipsel_test
	$(CC) -fPIC -shared mipsel_read_into_a0.c -o mipsel_read_into_a0.so

clean:
	rm -rf in out test read_into_rdi.so mipsel_test mipsel_read_into_a0.so