mirror of
https://github.com/hyperion-project/hyperion.ng.git
synced 2025-03-01 10:33:28 +00:00
project hyperion-remote created;
getoptPlusPlus dependency added; small changes to getOptPlusPlus;
This commit is contained in:
16
dependencies/build/getoptPlusPlus/Makefile
vendored
Normal file
16
dependencies/build/getoptPlusPlus/Makefile
vendored
Normal file
@@ -0,0 +1,16 @@
|
||||
SOURCES=getoptpp.cc test.cc
|
||||
HEADERS=getoptpp.h
|
||||
OBJECTS=$(SOURCES:.cc=.o)
|
||||
LDFLAGS=
|
||||
CXXFLAGS=-O0 -ggdb -Wall
|
||||
CFLAGS=$(CXXFLAGS)
|
||||
CC=g++
|
||||
TARGET=getopt-test
|
||||
|
||||
all: $(TARGET)
|
||||
$(TARGET): $(OBJECTS)
|
||||
$(CXX) $(LDFLAGS) -o $(TARGET) $(OBJECTS)
|
||||
$(SOURCES): $(HEADERS)
|
||||
|
||||
clean:
|
||||
rm -rf $(TARGET) $(OBJECTS) *~
|
Reference in New Issue
Block a user