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 (21 lines) | stat: -rw-r--r-- 436 bytes parent folder | download | duplicates (16)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
# Copyright (C) CNRS, INRIA, Université Bordeaux 1, Télécom SudParis
# See COPYING in top-level directory.

BIN = libexample.so main
CC = gcc
CFLAGS = -O0 -g

all: $(BIN)

main: main.c example.h
	$(CC) $(CFLAGS) -o main main.c -L. -lexample

libexample.so: example.o
	$(CC) $(CFLAGS) --shared -o libexample.so example.o -ldl

example.o: example.c example.h
	$(CC) $(CFLAGS) -o example.o -c example.c -fPIC


clean:
	rm -f $(BIN) *.o