Last change
on this file since 75 was 14, checked in by lstark, 16 years ago |
first version of hvcontrol added
|
File size:
470 bytes
|
Line | |
---|
1 | #
|
---|
2 | # General definitions for Makefiles
|
---|
3 | #
|
---|
4 |
|
---|
5 | C++ = c++
|
---|
6 | CC = gcc
|
---|
7 | #CC = c++
|
---|
8 | G++ = g++
|
---|
9 |
|
---|
10 | #OSTYPE = linux
|
---|
11 |
|
---|
12 | ifeq ($(OSTYPE),linux)
|
---|
13 | OSXLIBS = -L/sw/lib
|
---|
14 | DO_CAST = -DDO_CAST
|
---|
15 | endif
|
---|
16 |
|
---|
17 |
|
---|
18 | CFLAGS = -pedantic -pipe -fthread-jumps -funroll-all-loops -g -O3 -Wall -Wuninitialized -Wmissing-prototypes
|
---|
19 | CPPFLAGS = -pedantic -pipe -fthread-jumps -funroll-all-loops -g -O3 -Wall -Wuninitialized -Wno-deprecated $(DO_CAST)
|
---|
20 |
|
---|
21 | LIBS = -lz -lpthread -lutil -lfl -lusb -lftdi -L/usr/lib $(OSXLIBS)
|
---|
22 |
|
---|
Note:
See
TracBrowser
for help on using the repository browser.