csvpp

csvpp Mercurial Source Tree


Root/Makefile

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
CC=g++
CFLAGS=-c -Wall -I./include
LDFLAGS=-I./include
SOURCES=main.cpp ./src/csvpp.cpp ./src/stringhelper.cpp
OBJECTS=$(SOURCES:.cpp=.o)
EXECUTABLE=csvpp
 
all: $(SOURCES) $(EXECUTABLE)
 
$(EXECUTABLE): $(OBJECTS)
    $(CC) $(LDFLAGS) $(OBJECTS) -o $@
 
.cpp.o:
    $(CC) $(CFLAGS) $< -o $@
 
clean:
    rm -f src/*o csvpp
Source at commit 1b7e886a1b5d created 11 years 9 months ago.
By Nathan Adams, Fixing issue #1 as reported by damienlmoore

Archive Download this file

Branches

Tags

Page rendered in 1.10617s using 11 queries.