File: Makefile.in

package info (click to toggle)
hp48cc 1.3-7
  • links: PTS
  • area: main
  • in suites: forky, sid, trixie
  • size: 380 kB
  • sloc: yacc: 452; ansic: 184; lex: 108; makefile: 90; sh: 90
file content (39 lines) | stat: -rw-r--r-- 555 bytes parent folder | download | duplicates (6)
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
#	$Id: Makefile.in,v 1.2 2001/08/10 15:29:51 sandro Exp $

srcdir = @srcdir@
VPATH = $(srcdir)

CC = @CC@
CFLAGS = -I.. @CFLAGS@
LDFLAGS = @LDFLAGS@
LIBS = @LIBS@
RANLIB = @RANLIB@

LIB = libhp48cc.a
OBJS = @LIBOBJS@

.c.o:
	$(CC) -c -I. -I$(srcdir) -I$(srcdir)/.. $(CFLAGS) $<

all: $(LIB)

$(LIB): $(OBJS)
	rm -f $(LIB)
	ar rc $(LIB) $(OBJS)
	$(RANLIB) $(LIB)

.PHONY: install uninstall clean realclean distclean mostlyclean

install:

uninstall:

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

distclean: clean 
	-rm -f Makefile

realclean: distclean

mostlyclean: clean