File: Makefile

package info (click to toggle)
libnginx-mod-http-push-stream 0.6.0%2Bdfsg-4
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid, trixie
  • size: 1,272 kB
  • sloc: ruby: 7,101; ansic: 6,048; javascript: 2,121; sh: 53; makefile: 16
file content (19 lines) | stat: -rwxr-xr-x 380 bytes parent folder | download
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
all: publisher subscriber 

subscriber: subscriber.o util.o
	gcc -g -Oo subscriber.o util.o -o subscriber -largtable2

publisher: publisher.o util.o
	gcc -g -Oo publisher.o util.o -o publisher -largtable2

subscriber.o: subscriber.c
	gcc -g -c subscriber.c

publisher.o: publisher.c
	gcc -g -c publisher.c

util.o: util.c
	gcc -g -c util.c

clean:
	rm -rf *o publisher subscriber