Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 336109
Collapse All | Expand All

(-)Makefile (-4 / +4 lines)
Lines 3-18 Link Here
3
all: adsl
3
all: adsl
4
4
5
adsl: adsl.o adslstatus.o adslstatus.h adsl.h
5
adsl: adsl.o adslstatus.o adslstatus.h adsl.h
6
	gcc adsl.o adslstatus.o -o adsl
6
	$(CC) $(LDFLAGS) adsl.o adslstatus.o -o adsl
7
7
8
adsl.o: adsl.c adsl.h
8
adsl.o: adsl.c adsl.h
9
	gcc -c adsl.c
9
	$(CC) $(CFLAGS) -c adsl.c
10
10
11
adslstatus: adslstatus.o adslstatus.h adsl.h
11
adslstatus: adslstatus.o adslstatus.h adsl.h
12
	gcc adslstatus.o -o adslstatus
12
	$(CC) $(LDFLAGS) adslstatus.o -o adslstatus
13
13
14
adslstatus.o: adslstatus.c adslstatus.h adsl.h
14
adslstatus.o: adslstatus.c adslstatus.h adsl.h
15
	gcc -c adslstatus.c
15
	$(CC) $(CFLAGS) -c adslstatus.c
16
16
17
clean:
17
clean:
18
	rm adsl *.o
18
	rm adsl *.o

Return to bug 336109