mirror of
https://git.gfz-potsdam.de/naaice/iphreeqc.git
synced 2025-12-16 00:28:23 +01:00
git-svn-id: svn://136.177.114.72/svn_GW/IPhreeqc/trunk@4109 1feff8c3-07ed-0310-ac33-dd36852eb9cd
10 lines
168 B
Makefile
10 lines
168 B
Makefile
all: test5
|
|
|
|
test5: test5.o ../lib/libiphreeqc.a
|
|
g++ -L../lib -o test5 test5.o -liphreeqc
|
|
|
|
test5.o: test5.c
|
|
gcc -I../include -c test5.c
|
|
|
|
clean:
|
|
$(RM) test5 test5.o *~
|