Skip to content

Commit

Permalink
* Makefile : move common targets to top-level Makefile
Browse files Browse the repository at this point in the history
  • Loading branch information
hagen committed Sep 19, 2014
1 parent d8bb640 commit 2c1365a
Show file tree
Hide file tree
Showing 4 changed files with 20 additions and 64 deletions.
19 changes: 19 additions & 0 deletions Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -8,3 +8,22 @@ else
include Makefile.linux
endif

all: obj i2p

i2p: $(OBJECTS:obj/%=obj/%)
$(CC) -o $@ $^ $(LDFLAGS) $(LIBS)

.SUFFIXES:
.SUFFIXES: .c .cc .C .cpp .o

obj/%.o : %.cpp
$(CC) -o $@ $< -c $(CFLAGS) $(INCFLAGS) $(CPU_FLAGS)

obj:
mkdir -p obj

clean:
rm -fr obj i2p

.PHONY: all
.PHONY: clean
21 changes: 0 additions & 21 deletions Makefile.bsd
Original file line number Diff line number Diff line change
Expand Up @@ -4,24 +4,3 @@ include filelist.mk
INCFLAGS = -I/usr/include/ -I/usr/local/include/
LDFLAGS = -Wl,-rpath,/usr/local/lib -L/usr/local/lib -lcryptopp -lboost_system -lboost_date_time -lboost_filesystem -lboost_regex -lboost_program_options -lpthread
LIBS =

all: obj i2p

i2p: $(OBJECTS:obj/%=obj/%)
$(CC) -o $@ $^ $(LDFLAGS) $(LIBS)

.SUFFIXES:
.SUFFIXES: .c .cc .C .cpp .o

obj/%.o : %.cpp
$(CC) -o $@ $< -c $(CFLAGS) $(INCFLAGS) $(CPU_FLAGS)

obj:
mkdir -p obj

clean:
rm -fr obj i2p

.PHONY: all
.PHONY: clean

21 changes: 0 additions & 21 deletions Makefile.linux
Original file line number Diff line number Diff line change
@@ -1,4 +1,3 @@

CC = g++
CFLAGS = -g -Wall -std=c++11
include filelist.mk
Expand All @@ -11,23 +10,3 @@ ifneq ($(shell grep -c aes /proc/cpuinfo),0)
CPU_FLAGS = -maes -DAESNI
endif

all: obj i2p

i2p: $(OBJECTS:obj/%=obj/%)
$(CC) -o $@ $^ $(LDFLAGS) $(LIBS)

.SUFFIXES:
.SUFFIXES: .c .cc .C .cpp .o

obj/%.o : %.cpp
$(CC) -o $@ $< -c $(CFLAGS) $(INCFLAGS) $(CPU_FLAGS)

obj:
mkdir -p obj

clean:
rm -fr obj i2p

.PHONY: all
.PHONY: clean

23 changes: 1 addition & 22 deletions Makefile.osx
Original file line number Diff line number Diff line change
Expand Up @@ -9,30 +9,9 @@ LIBS =
# http://www.hutsby.net/2011/08/macs-with-aes-ni.html
# Seems like all recent Mac's have AES-NI, after firmware upgrade 2.2
# Found no good way to detect it from command line. TODO: Might be some osx sysinfo magic
CPU_FLAGS = -DAESNI
CFLAGS += -DAESNI

# Apple Mac OSX
UNAME_S := $(shell uname -s)
ifeq ($(UNAME_S),Darwin)
endif

all: obj i2p

i2p: $(OBJECTS:obj/%=obj/%)
$(CC) -o $@ $^ $(LDFLAGS) $(LIBS)

.SUFFIXES:
.SUFFIXES: .c .cc .C .cpp .o

obj/%.o : %.cpp
$(CC) -o $@ $< -c $(CFLAGS) $(INCFLAGS) $(CPU_FLAGS)

obj:
mkdir -p obj

clean:
rm -fr obj i2p

.PHONY: all
.PHONY: clean

0 comments on commit 2c1365a

Please sign in to comment.