File: Makefile.in

package info (click to toggle)
zssh 1.5c.debian.1-7
  • links: PTS, VCS
  • area: main
  • in suites: buster
  • size: 492 kB
  • sloc: ansic: 2,048; sh: 184; makefile: 148
file content (35 lines) | stat: -rw-r--r-- 430 bytes parent folder | download | duplicates (5)
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

MAKE		=  @MAKE@
INSTALL		=  @INSTALL@
TAR		=  @TAR@
AR		=  @AR@
RANLIB		=  @RANLIB@
CC		=  @CC@
CFLAGS		=  @CFLAGS@ @DEFS@
CPPFLAGS	=  @CPPFLAGS@
LIBS		=  @LIBS@ 
LDFLAGS 	=  @LDFLAGS@


NAME	= libreadline.a
SRC	= readline.c
OBJ	= $(SRC:.c=.o)

all : $(NAME)


$(NAME) : $(OBJ)
	-rm $@
	$(AR) cq $@ $(OBJ)
	$(RANLIB) $@


new : clean all


clean :
	-rm -f *.o *~ *.a \#*\# core $(NAME) typescript nohup.out 

distclean : clean