File: Makefile.in

package info (click to toggle)
hybserv 1.9.2-4.1
  • links: PTS
  • area: main
  • in suites: squeeze
  • size: 2,852 kB
  • ctags: 1,854
  • sloc: ansic: 37,037; sh: 3,178; makefile: 337
file content (56 lines) | stat: -rw-r--r-- 861 bytes parent folder | download | duplicates (4)
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
# Hybserv ./compat Makefile
# $Id: Makefile.in 1305 2005-09-28 10:32:31Z kreator $


# Compiler environment and flags
AR = @AR@
ARFLAGS = ru
RANLIB = @RANLIB@
CC = @CC@
CFLAGS = @CFLAGS@
CPP = @CPP@
CPPFLAGS = @CPPFLAGS@
COMPATDIR = ../compat
LDFLAGS = @LDFLAGS@
INCLUDEDIR = ../include
INCLUDE = -I. -I$(INCLUDEDIR) $(CPPFLAGS)
DEFS =
LIBS = @LIBS@
MKDEP = @MKDEP@
RM = @RM@ -f


# Sources, objects, etc.
LIBOBJS = @LIBOBJS@

OBJECTS = $(LIBOBJS)


# Binaries
LIBCOMPAT = libmycompat.a

# Targets and rest of the stuff
all: $(LIBCOMPAT)

$(LIBCOMPAT): $(LIBOBJS)
ifdef LIBOBJS
	$(AR) $(ARFLAGS) $@ $(LIBOBJS)
	$(RANLIB) $@
endif

clean:
	$(RM) $(OBJECTS) $(LIBCOMPAT)

distclean: clean
	$(RM) Makefile

install:
	@echo "Run make install from top directory!"

.SUFFIXES: .c .o

.c.o:
	$(CC) $(INCLUDE) $(CFLAGS) -c $<

# End of compat/Makefile
# vim: ts=4:noet