summaryrefslogtreecommitdiff
path: root/.Makefile.common
blob: b4c5ab3282f2eccdb479f2accb38ea5f96d4759c (plain)
1
2
3
4
5
6
7
8
9
10
## define variables used in all makefiles
LIB=../lib/lib2.c ../lib/lib.c ../lib/lib3.c
CC=gcc
CFLAGS := -g $(CFLAGS) 
CLIBS=`pkg-config --cflags --libs libcrypto`

%: %.c
	@echo -e "\tCC\t $<"
	@$(CC) $(CFLAGS) $< $(LIB) $(CLIBS) -o $*