Skip to content

Commit

Permalink
add makefile for 10m
Browse files Browse the repository at this point in the history
  • Loading branch information
yedf committed May 14, 2016
1 parent 8163e84 commit 88a6051
Showing 1 changed file with 15 additions and 0 deletions.
15 changes: 15 additions & 0 deletions 10m/Makefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
include ../config.mk
CXXFLAGS += $(PLATFORM_CXXFLAGS) -lhandy $(PLATFORM_LDFLAGS)

SRCS=$(wildcard *.cc)
PROGS=$(SRCS:.cc=)

all:$(PROGS)
$(PROGS):%:%.cc
$(CXX) $^ -o $@ $(CXXFLAGS)

.PHONY:clean
clean:
rm -f $(PROGS)


0 comments on commit 88a6051

Please sign in to comment.