ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/cwcbm/Makefile
Revision: 1.1.1.1 (vendor branch)
Committed: 2004-01-07T15:37:45Z (20 years, 3 months ago) by cebix
Branch: cebix
CVS Tags: start
Changes since 1.1: +0 -0 lines
Log Message:
imported sources

File Contents

# Content
1 CC=gcc
2 CFLAGS=-g -O2 -Wall
3 LDFLAGS=
4
5 all: readcbm writecbm
6
7 readcbm: readcbm.o catweasel.o
8 $(CC) $(LDFLAGS) -o $@ $^
9
10 writecbm: writecbm.o catweasel.o
11 $(CC) $(LDFLAGS) -o $@ $^
12
13 %.o: %.c
14 $(CC) -c $(CFLAGS) -o $@ $<
15
16 clean:
17 rm -f readcbm writecbm *.o *~