Skip to content

Instantly share code, notes, and snippets.

View RamyElkest's full-sized avatar

Ramy Elkest RamyElkest

View GitHub Profile
@chutaicho
chutaicho / Makefile
Last active November 28, 2017 13:46
a quick makefile for small c++ project.
#
# Created by Takashi Aoki
#
TARGET = $(shell basename `pwd`)
CC = g++
CFLAGS = -MMD -MP
INCLUDE = -I./src
ODIR = obj