source: ResearchApps/Measurement/warpnet_coprocessors/ber_processor/Makefile

Last change on this file was 1567, checked in by murphpo, 14 years ago

adding WARPnet BER processor

  • Property svn:executable set to *
File size: 299 bytes
Line 
1CC=gcc
2CFLAGS=-c -Wall
3LDFLAGS=-lpcap
4SOURCES=ber_processor.c
5INCLUDES=ber_processor.h
6OBJECTS=$(SOURCES:.c=.o)
7EXECUTABLE=ber_processor
8
9all: $(SOURCES) $(EXECUTABLE) $(INCLUDES)
10   
11$(EXECUTABLE): $(OBJECTS) $(INCLUDES)
12    $(CC) $(LDFLAGS) $(OBJECTS) -o $@
13.c.o: $(INCLUDES)
14    $(CC) $(CFLAGS) $< -o $@
Note: See TracBrowser for help on using the repository browser.