Makefile
author viric@llimona
Mon, 12 Nov 2007 09:57:46 +0100
changeset 140 0b99d94818d1
parent 133 4306e96f5906
child 146 5e689cb593aa
permissions -rw-r--r--
Added the web page.
Ignore whitespace changes - Everywhere: Within whitespace: At end of lines:
78
e4d5907f5aaf Added manpage and make install.
viric@llimona
parents: 71
diff changeset
     1
PREFIX?=/usr/local
121
7a42c36de0d0 Added notes about portability.
viric@llimona
parents: 120
diff changeset
     2
GLIBCFLAGS=-D_XOPEN_SOURCE=500 -D__STRICT_ANSI__
7a42c36de0d0 Added notes about portability.
viric@llimona
parents: 120
diff changeset
     3
CFLAGS=-pedantic -ansi -Wall -g -O0
32
3531439f2770 Tail works.
viric@llimona
parents: 30
diff changeset
     4
OBJECTS=main.o \
3531439f2770 Tail works.
viric@llimona
parents: 30
diff changeset
     5
	server.o \
3531439f2770 Tail works.
viric@llimona
parents: 30
diff changeset
     6
	server_start.o \
3531439f2770 Tail works.
viric@llimona
parents: 30
diff changeset
     7
	client.o \
3531439f2770 Tail works.
viric@llimona
parents: 30
diff changeset
     8
	msgdump.o \
3531439f2770 Tail works.
viric@llimona
parents: 30
diff changeset
     9
	jobs.o \
3531439f2770 Tail works.
viric@llimona
parents: 30
diff changeset
    10
	execute.o \
3531439f2770 Tail works.
viric@llimona
parents: 30
diff changeset
    11
	msg.o \
71
531666e297d7 Send e-letter implemented.
viric@llimona
parents: 48
diff changeset
    12
	client_run.o \
92
05004c52ecff Better error reports on internal handled errors.
viric@llimona
parents: 88
diff changeset
    13
	mail.o \
95
d31aaee661d1 Protection against SIGPIPE. Block it.
viric@llimona
parents: 92
diff changeset
    14
	error.o \
117
db479ef293d3 Making "-l" not to trunc the commands.
viric@llimona
parents: 109
diff changeset
    15
	signals.o \
db479ef293d3 Making "-l" not to trunc the commands.
viric@llimona
parents: 109
diff changeset
    16
	list.o
78
e4d5907f5aaf Added manpage and make install.
viric@llimona
parents: 71
diff changeset
    17
INSTALL=/usr/bin/install -c
30
ab88478a7e9b The commandline parameters are centered in a struct.
viric@llimona
parents: 18
diff changeset
    18
88
bdd6018f66fd Fixed the declaration warnings in the compilation.
lbatlle@npdl268.bpo.hp.com
parents: 85
diff changeset
    19
all: ts
bdd6018f66fd Fixed the declaration warnings in the compilation.
lbatlle@npdl268.bpo.hp.com
parents: 85
diff changeset
    20
133
4306e96f5906 Added setsid when going background.
viric@llimona
parents: 121
diff changeset
    21
tsretry: tsretry.c
4306e96f5906 Added setsid when going background.
viric@llimona
parents: 121
diff changeset
    22
83
94945f1c7326 Fixed a wrong makefile. Stupid me.
viric@llimona
parents: 79
diff changeset
    23
ts: $(OBJECTS)
121
7a42c36de0d0 Added notes about portability.
viric@llimona
parents: 120
diff changeset
    24
	$(CC) $(LDFLAGS) -o ts $^
7a42c36de0d0 Added notes about portability.
viric@llimona
parents: 120
diff changeset
    25
7a42c36de0d0 Added notes about portability.
viric@llimona
parents: 120
diff changeset
    26
.c.o:
7a42c36de0d0 Added notes about portability.
viric@llimona
parents: 120
diff changeset
    27
	$(CC) $(CFLAGS) $(GLIBCFLAGS) -c $<
83
94945f1c7326 Fixed a wrong makefile. Stupid me.
viric@llimona
parents: 79
diff changeset
    28
79
f99c2548fac4 Updated tricks.
viric@llimona
parents: 78
diff changeset
    29
# Dependencies
78
e4d5907f5aaf Added manpage and make install.
viric@llimona
parents: 71
diff changeset
    30
main.o: main.c main.h
e4d5907f5aaf Added manpage and make install.
viric@llimona
parents: 71
diff changeset
    31
server_start.o: server_start.c main.h
118
f45aad564b6e Fixed makefile, after removing msg.h
viric@llimona
parents: 117
diff changeset
    32
server.o: server.c main.h
f45aad564b6e Fixed makefile, after removing msg.h
viric@llimona
parents: 117
diff changeset
    33
client.o: client.c main.h
f45aad564b6e Fixed makefile, after removing msg.h
viric@llimona
parents: 117
diff changeset
    34
msgdump.o: msgdump.c main.h
f45aad564b6e Fixed makefile, after removing msg.h
viric@llimona
parents: 117
diff changeset
    35
jobs.o: jobs.c main.h
f45aad564b6e Fixed makefile, after removing msg.h
viric@llimona
parents: 117
diff changeset
    36
execute.o: execute.c main.h
f45aad564b6e Fixed makefile, after removing msg.h
viric@llimona
parents: 117
diff changeset
    37
msg.o: msg.c main.h
78
e4d5907f5aaf Added manpage and make install.
viric@llimona
parents: 71
diff changeset
    38
client_run.o: client_run.c main.h
e4d5907f5aaf Added manpage and make install.
viric@llimona
parents: 71
diff changeset
    39
mail.o: mail.c main.h
118
f45aad564b6e Fixed makefile, after removing msg.h
viric@llimona
parents: 117
diff changeset
    40
error.o: error.c main.h
95
d31aaee661d1 Protection against SIGPIPE. Block it.
viric@llimona
parents: 92
diff changeset
    41
signals.o: signals.c main.h
117
db479ef293d3 Making "-l" not to trunc the commands.
viric@llimona
parents: 109
diff changeset
    42
list.o: list.c main.h
32
3531439f2770 Tail works.
viric@llimona
parents: 30
diff changeset
    43
30
ab88478a7e9b The commandline parameters are centered in a struct.
viric@llimona
parents: 18
diff changeset
    44
clean:
ab88478a7e9b The commandline parameters are centered in a struct.
viric@llimona
parents: 18
diff changeset
    45
	rm -f *.o ts
78
e4d5907f5aaf Added manpage and make install.
viric@llimona
parents: 71
diff changeset
    46
109
45c496d5cb0e Fixed make install, depending on ts.
viric@llimona
parents: 95
diff changeset
    47
install: ts
78
e4d5907f5aaf Added manpage and make install.
viric@llimona
parents: 71
diff changeset
    48
	$(INSTALL) -d $(PREFIX)/bin
e4d5907f5aaf Added manpage and make install.
viric@llimona
parents: 71
diff changeset
    49
	$(INSTALL) ts $(PREFIX)/bin
e4d5907f5aaf Added manpage and make install.
viric@llimona
parents: 71
diff changeset
    50
	$(INSTALL) -d $(PREFIX)/man/man1
e4d5907f5aaf Added manpage and make install.
viric@llimona
parents: 71
diff changeset
    51
	$(INSTALL) -m 644 ts.1 $(PREFIX)/man/man1