dustin / waitforsocket

A simple program to help you react more quickly to servers and services coming back online.

This URL has Read+Write access

waitforsocket / Makefile.in
38ed4813 » dustin 2003-06-12 Wait for a socket to become... 1 # Copyright (c) 1998 Dustin Sallings
2 # $Id: Makefile.in,v 1.1 2003/06/12 17:05:36 dustin Exp $
3
4 SHELL=/bin/sh
5 CC=@CC@
6 LINT=lint
7 INCLUDES=-I.
8 DEFINES=
e8d1c41b » dustin 2008-09-26 Compile with -Wall 9 CFLAGS=@CFLAGS@ $(INCLUDES) $(DEFINES) -Wall
38ed4813 » dustin 2003-06-12 Wait for a socket to become... 10 LIBS=@LIBS@
11 LDFLAGS=$(LIBS)
12
13 .SUFFIXES: .c .o .l .a .ln
14 OBJS=main.o sockets.o
15 SRCS=main.c sockets.c
16 LINTS=main.ln sockets.ln
17 EXES=waitforsocket
18 AUTOJUNK=config.h config.status config.cache config.log Makefile
19 JUNK=$(OBJS) $(EXES) $(LINTS)
20
21 waitforsocket: $(OBJS)
22 $(CC) $(CFLAGS) -o $@ $(OBJS) $(LDFLAGS)
23
535bd689 » dustin 2006-01-13 I made changes to a generat... 24 main.o: main.c waitforsocket.h
25
26 sockets.o: sockets.c waitforsocket.h
27
38ed4813 » dustin 2003-06-12 Wait for a socket to become... 28 lint: $(LINTS)
29 $(LINT) $(LINTS)
30
31 .c.ln:
32 $(LINT) $(INCLUDES) -c $<
33
34 clean:
35 rm -f $(JUNK) core
36
37 ultrabrite: clean
38 rm -f $(AUTOJUNK)