Projet

Général

Profil

Paste
Télécharger au format
Statistiques
| Branche: | Révision:

root / tools / munin-node-c / Makefile @ b95b1672

Historique | Voir | Annoter | Télécharger (235 octets)

1 52369dbe Steve Schnepp
CC=gcc
2
CFLAGS=-W -Wall -pedantic -Wextra -g -O2
3
OBJS=main.o
4
LINKS=
5
6
%.o: %.c
7
	${CC} ${CFLAGS} -c $< -o $@
8
all: munin-node-c
9
10
munin-node-c: ${OBJS}
11
	${CC} ${CFLAGS} $^ -o $@
12
clean:
13
	rm -f munin-node-c ${OBJS} ${LINKS}
14
.PHONY: all clean