ViewVC Help
View File | Revision Log | Show Annotations | Revision Graph | Root Listing
root/cebix/cwcbm/Makefile
Revision: 1.2
Committed: 2004-01-07T16:53:58Z (20 years, 3 months ago) by cebix
Branch: MAIN
CVS Tags: HEAD
Changes since 1.1: +2 -2 lines
Log Message:
- better argument parsing
- drive type (40/80 tracks) selectable with command line option
- works with Catweasel PCI MK3

File Contents

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