File: Makefile

package info (click to toggle)
mon 0.99.2-2
  • links: PTS
  • area: main
  • in suites: woody
  • size: 896 kB
  • ctags: 300
  • sloc: perl: 9,754; ansic: 778; sh: 372; makefile: 122
file content (18 lines) | stat: -rw-r--r-- 205 bytes parent folder | download | duplicates (15)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
CC=gcc
CFLAGS=-O2 -Wall -g

OBJS = muxpect.o setup.o io.o

all: muxpect

muxpect.o : muxpect.h

setup.o : muxpect.h

io.o : muxpect.h

muxpect: $(OBJS)
	$(CC) -o $@ $(OBJS)

clean:
	rm -f *.o muxpect core