File: Makefile.in

package info (click to toggle)
libtlen 20041113-3
  • links: PTS
  • area: main
  • in suites: etch, etch-m68k, sarge
  • size: 832 kB
  • ctags: 1,514
  • sloc: ansic: 13,713; sh: 214; makefile: 156
file content (26 lines) | stat: -rw-r--r-- 477 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#
#   Ostatnia aktualizacja:
#   $Id: Makefile.in,v 1.1 2002/11/14 16:18:40 mati Exp $
#
prefix = @prefix@
exec_prefix = @exec_prefix@
libdir = @libdir@
includedir = @includedir@

CC = @CC@
CFLAGS = @CFLAGS_LIBTLEN@ -I.. -I../lib -fPIC -Wall -ggdb
LIBS= ../lib/libtlen.a

MAKE = @MAKE@
INSTALL = @INSTALL@

all: sendmsg

clean:
	rm -f *.o *~ core $(STATIC) *.so *.so.* sendmsg

distclean:	clean
	rm -f Makefile

sendmsg: sendmsg.c
	$(CC) sendmsg.c -o sendmsg $(CFLAGS) $(LIBS)