Skip to content

Commit

Permalink
Make sure to use the new methods
Browse files Browse the repository at this point in the history
  • Loading branch information
roystgnr committed Apr 8, 2013
1 parent 05220f0 commit 37eb363
Show file tree
Hide file tree
Showing 2 changed files with 6 additions and 1 deletion.
2 changes: 1 addition & 1 deletion Makefile
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,7 @@ test.o : test.C test.h
test2.o : test2.C test2.h
g++ -c $<

main.o : main.C test.h
main.o : main.C test.h test2.h
g++ -c $<

test : test.o test2.o main.o
Expand Down
5 changes: 5 additions & 0 deletions main.C
Original file line number Diff line number Diff line change
@@ -1,8 +1,13 @@
#include "test.h"
#include "test2.h"

int main(void)
{
testfunc1();
testfunc2();

test2func1();
test2func2();

return 0;
}

0 comments on commit 37eb363

Please sign in to comment.