diff --git a/examples/Makefile b/examples/Makefile index 6329f35..67d8826 100644 --- a/examples/Makefile +++ b/examples/Makefile @@ -12,8 +12,8 @@ install: $(TARGETS) clean: rm -f *.o *.d $(TARGETS) gmon.out *~ -$(TARGETS): %.o: %.c - $(CC) '-g -O2 $(SCF) $(GCF)' $< -o $@ libfusd.so.0.0 $(SLF) +$(TARGETS): %: %.c + $(CC) $(GCF) $< -o $@ ../libfusd/libfusd.a %.d: %.c $(CC) -M $(CFLAGS) $< > $@.$$$$; sed 's,\($*\)\.o[ :]*,\1.o $@ : ,g' < $@.$$$$ > $@; rm -f $@.$$$$ diff --git a/examples/helloworld b/examples/helloworld deleted file mode 100755 index 9a29ada..0000000 Binary files a/examples/helloworld and /dev/null differ