source: hvcontrol/Makefile.general@ 40

Last change on this file since 40 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
5C++ = c++
6CC = gcc
7#CC = c++
8G++ = g++
9
10#OSTYPE = linux
11
12ifeq ($(OSTYPE),linux)
13 OSXLIBS = -L/sw/lib
14 DO_CAST = -DDO_CAST
15endif
16
17
18CFLAGS = -pedantic -pipe -fthread-jumps -funroll-all-loops -g -O3 -Wall -Wuninitialized -Wmissing-prototypes
19CPPFLAGS = -pedantic -pipe -fthread-jumps -funroll-all-loops -g -O3 -Wall -Wuninitialized -Wno-deprecated $(DO_CAST)
20
21LIBS = -lz -lpthread -lutil -lfl -lusb -lftdi -L/usr/lib $(OSXLIBS)
22
Note: See TracBrowser for help on using the repository browser.