Skip to content

Commit

Permalink
A sample make file that takes into account the need to link against
Browse files Browse the repository at this point in the history
glib0-2.0 (for now) and libm.

	new file:   c/vdmclib/src/SampleMakefile
  • Loading branch information
Victor Bandur committed Jun 2, 2016
1 parent a4543ea commit 0cfb7bb
Showing 1 changed file with 4 additions and 0 deletions.
4 changes: 4 additions & 0 deletions c/vdmclib/src/SampleMakefile
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
BINARY=TestBinary

all: *.c *.h
gcc `pkg-config --cflags --libs glib-2.0` -lm -std=c11 -o $(BINARY) *.c

0 comments on commit 0cfb7bb

Please sign in to comment.