File: Makefile

package info (click to toggle)
haproxy 3.3.2-1
  • links: PTS, VCS
  • area: main
  • in suites: experimental
  • size: 24,612 kB
  • sloc: ansic: 275,408; sh: 3,607; xml: 1,756; python: 1,345; makefile: 1,162; perl: 168; cpp: 21
file content (13 lines) | stat: -rw-r--r-- 252 bytes parent folder | download | duplicates (5)
1
2
3
4
5
6
7
8
9
10
11
12
13
# makefile for dummy wurfl library
# builds shared library
# installs it in /usr/lib/ with header file wurfl.h in /usr/include/wurfl
#
# install needs to be run as root

build: libwurfl.a

libwurfl.a: dummy-wurfl.o
	ar rv $@ $<

clean:
	rm -rf *.a *.o