File: Makefile

package info (click to toggle)
eztrace 2.0%2Brepack-12
  • links: PTS, VCS
  • area: main
  • in suites: bookworm
  • size: 4,132 kB
  • sloc: ansic: 23,501; perl: 910; sh: 857; cpp: 771; makefile: 696; fortran: 327; f90: 320; python: 57
file content (13 lines) | stat: -rw-r--r-- 216 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
CC=cc
BIN=static libeztrace-staticlib.so

all: $(BIN)

libeztrace-staticlib.so: staticlib.c
	$(CC) -fPIC -shared -o libeztrace-staticlib.so staticlib.c $(CFLAGS) $(LDFLAGS)

test: all
	./run.sh

clean:
	rm -f $(BIN)