Sophie

Sophie

distrib > Fedora > 18 > x86_64 > media > updates > by-pkgid > 45a94e45036b4f2592a7e2c3922f90c7 > files > 344

adevs-doc-2.6-4.fc18.noarch.rpm

CFLAGS = -Wall -g -fopenmp
CC = g++

# Adjust these as needed to find the X11 and adevs libs and headers
ADEVS = ../..
INCLUDE = -I${ADEVS}/include 
##
# Should not need to edit below this line
##

OBJS = CherryBomb.o

.SUFFIXES: .cpp
.cpp.o:
	${CC} ${CFLAGS} ${INCLUDE} -c $<

all: ${OBJS}
	${CC} ${CFLAGS} ${OBJS} 

clean:
	rm -f *.o core a.out