File: Makefile

package info (click to toggle)
arpalert 2.0.12-7
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 3,584 kB
  • sloc: ansic: 4,456; sh: 517; makefile: 116; perl: 35
file content (13 lines) | stat: -rw-r--r-- 248 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
# Copyright (c) 2005-2010 Thierry FOURNIER
# $Id: Makefile 690 2008-03-31 18:36:43Z  $

CC = gcc
CFLAGS += -Wall -g

all: example.so

clean:
	-@rm -f *.o *.so

example.so: example.o
	${CC} ${CFLAGS} ${LDFLAGS} -fPIC -shared -o example.so example.o