File: Makefile

package info (click to toggle)
etbemon 1.4.2-1
  • links: PTS, VCS
  • area: main
  • in suites: forky, sid
  • size: 1,624 kB
  • sloc: perl: 18,038; cpp: 546; sh: 428; ansic: 407; makefile: 71
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