]> git.llucax.com Git - software/makeit.git/blob - lib2/lib2.cpp
Add a global phony "test" target
[software/makeit.git] / lib2 / lib2.cpp
1
2 #include "lib2.h"
3
4 #include <otherproj/otherproj.h>
5 #include <makeit/lib1/lib1.h>
6
7 #include <stdio.h>
8
9 void lib2(void)
10 {
11         printf("lib2()\n");
12         lib1();
13         otherproj();
14 }
15