# Definition for built-in macros
CFLAGS = 
CC     = cc

# Definition for other macros
D    = ../PvOrig
OBJS = wrapped.o $D/pvoc.o
SRCS = wrapped.c $D/pvoc.c 


# Dependency rules

# Program depends on compiled object files:
wrapped: $(OBJS)
	 $(CC) $(CFLAGS) $(SRCS) -o ../Bin/wrapped 

# Object files depend on source files
# ...

# Remove objects
clean:
	 rm wrapped.o pvoc.o 
