Sophie

Sophie

distrib > Fedora > 13 > i386 > media > os > by-pkgid > b8240933842cee58f4e7ce03017867c5 > files > 98

libsx-devel-2.05-18.fc12.i686.rpm

#
#
include ../libsx_defs

# the object files which the program depends on
OBJS       = main.o callbacks.o

demo3 : $(OBJS)
	$(CC) -o demo3 $(OBJS) $(LIBS)


# main.o depends on main.c (of course) and main.h and callbacks.h
main.o : main.c main.h callbacks.h

callbacks.o : callbacks.c main.h


clean :
	rm -f *.o *~ core demo3