table.h added
This commit is contained in:
parent
73df3e0528
commit
aa8af55608
5 changed files with 83 additions and 2 deletions
6
Makefile
6
Makefile
|
|
@ -15,12 +15,14 @@ $(BUILDDIR):
|
|||
|
||||
|
||||
$(TARGET): $(OBJECTS)
|
||||
$(CC) $^ -o $@ -lboost_filesystem -lboost_system
|
||||
$(CC) $^ -o $(BUILDDIR)/$@ -lboost_filesystem -lboost_system
|
||||
|
||||
|
||||
$(OBJECTS): $(BUILDDIR)/%.o : $(SOURCEDIR)/%.cpp
|
||||
$(CC) $(CFLAGS) $< -o $@
|
||||
|
||||
install: bin/$(TARGET)
|
||||
install -m 0755 bin/$(TARGET) $(prefix)/bin
|
||||
|
||||
clean:
|
||||
rm -f $(BUILDDIR)/*o $(TARGET)
|
||||
rm -f $(BUILDDIR)/*
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue