public
Description: A simple program to help you react more quickly to servers and services coming back online.
Homepage:
Clone URL: git://github.com/dustin/waitforsocket.git
waitforsocket / Makefile.in
100644 39 lines (29 sloc) 0.706 kb
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
# Copyright (c) 1998 Dustin Sallings
# $Id: Makefile.in,v 1.1 2003/06/12 17:05:36 dustin Exp $
 
SHELL=/bin/sh
CC=@CC@
LINT=lint
INCLUDES=-I.
DEFINES=
CFLAGS=@CFLAGS@ $(INCLUDES) $(DEFINES) -Wall
LIBS=@LIBS@
LDFLAGS=$(LIBS)
 
.SUFFIXES: .c .o .l .a .ln
OBJS=main.o sockets.o
SRCS=main.c sockets.c
LINTS=main.ln sockets.ln
EXES=waitforsocket
AUTOJUNK=config.h config.status config.cache config.log Makefile
JUNK=$(OBJS) $(EXES) $(LINTS)
 
waitforsocket: $(OBJS)
$(CC) $(CFLAGS) -o $@ $(OBJS) $(LDFLAGS)
 
main.o: main.c waitforsocket.h
 
sockets.o: sockets.c waitforsocket.h
 
lint: $(LINTS)
$(LINT) $(LINTS)
 
.c.ln:
$(LINT) $(INCLUDES) -c $<
 
clean:
rm -f $(JUNK) core
 
ultrabrite: clean
rm -f $(AUTOJUNK)